-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·92 lines (81 loc) · 2.88 KB
/
index.html
File metadata and controls
executable file
·92 lines (81 loc) · 2.88 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ve Interactive</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"></head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6">
<form>
<h1>Create your Ve Account</h1>
<hr>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" id="email" placeholder="Enter email"></div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" id="password" placeholder="Enter password"></div>
<hr>
<div class="form-group">
<label for="firstName">First name</label>
<input type="text" class="form-control" id="firstName" placeholder="Enter first name"></div>
<div class="form-group">
<label for="lastName">Last name</label>
<input type="text" class="form-control" id="lastName" placeholder="Enter last name"></div>
<div class="radio-inline">
<label>
<input type="radio" name="sex" id="male" value="male">Male</label>
</div>
<div class="radio-inline">
<label>
<input type="radio" name="sex" id="female" value="female">Female</label>
</div>
<br>
<br>
<div class="form-group">
<label for="phoneNumber">Phone number</label>
<input type="number" class="form-control" id="phoneNumber" placeholder="Enter UK phone number"></div>
<div class="checkbox">
<label>
<input type="checkbox" id="termsAndConditions">I Agree To The Terms & Conditions</label>
</div>
</form>
</div>
<div class="col-md-6">
<h1>My cart</h1>
<hr>
<table class="table">
<thead>
<tr>
<th>Product name</th>
<th>Quantity</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td class="productName">Ve Lamp</td>
<td class="productQuantity">2</td>
<td class="productPrice">£20</td>
</tr>
</tbody>
<tfoot>
<tr>
<td></td>
<td>Sum</td>
<td id="totalPrice">£40</td>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
<script type="text/javascript" src="mappings.js"></script>
<script type="text/javascript" src="JS/Classes/DataReporter.js"></script>
<script type="text/javascript" src="JS/init.js"></script>
</body>
</html>