This repository has been archived by the owner on Apr 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvirtual-checkout.php
66 lines (62 loc) · 1.8 KB
/
virtual-checkout.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?
$page_title = "Donation Details";
$page_template = "donation-details";
?>
<?php include("includes/_virtual-header.php"); ?>
<div class="container header">
<div class="row">
<div class="ten columns">
<h1 class="purple">Back to School Drive</h1>
</div>
<div class="two columns company">
<img src="vgt-images/cisco.png"/>
</div>
</div>
</div>
<div class="row">
<div class="six columns">
<form>
<label>1. Company Name:
<input type="text">
</label>
<label>2. Dedication:
<select>
<option>None</option>
<option>On behalf of</option>
<option>In memory of</option>
</select>
</label>
<p>Send dedication acknowledgement to:</p>
<label>Name:
<input type="text">
</label>
<label>Email:
<input type="text">
</label>
<label>3. Privacy Preferences:
<select>
<option>Provide my full contact information</option>
<option>Provide none of my personal (anonymous)</option>
</select>
</label>
</form>
<table>
<thead>
<tr>
<td>Donation List (1 Item)</td>
</tr>
</thead>
<tbody>
<tr>
<td><label><input text="0"></label></td>
<td>Donate to support the drive</td>
<td>$10.00 <a href="#">remove</a></td>
</tr>
<tr><td>Subtotal: $10.00</td></tr>
</tbody>
</table>
<p>Virtual Giving Tree donations lets us do the shopping for you! We receive discounts through bulk purchases and your donation helps with these orders. Backpacks and supplies are delivered by the manufacturers to our warehouse to be assembled and distributed.</p>
<a href="#">Back to home page</a>
</div>
</div>
<?php include("includes/_virtual-footer.php"); ?>