-
Notifications
You must be signed in to change notification settings - Fork 0
/
order.html
96 lines (83 loc) · 3.34 KB
/
order.html
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
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./style.css">
<title>Finalizing Order</title>
</head>
<body>
<header>
<div id="header_content">
<a href="./filter.html">
<img class="header_back_icon" src="./Icons/back_icon.svg" alt="Back icon">
</a>
<img id="header_image" src="./Images/Header/finalizing_order.svg" alt="Mobile Providers">
<a href="./menu.html">
<img class="header_icon" src="./Icons/menu_icon.svg" alt="Menu icon">
</a>
</div>
</header>
<!--
Form voor het invullen van de benodigde informatie.
Voornaam (input text)
Tussenvoegsel (input text)
Achternaam (input text)
E-mail (input email)
Geboortedatum (input date)
Ingangdatum van abonnement (input date)
Bankgegevens (input text)
Bestel knop (input submit)
-->
<main>
<div class="intro">
<h3>You’re almost there</h3>
<p> fill in the required data and order your mobile
plan. You will receive a confirmation of your
order through email. Your selected provider will
send you a list of possible stores where you can
pick up your sim card. </p>
</div>
<section>
<form action="./index.html">
<div class="form_element">
<div class="voornaam_tussenvoegsel">
<label for="voornaam">First name</label>
<input id="voornaam" type="text" name="voornaam">
<label for="tussenvoegsel">Insertion</label>
<input id="tussenvoegsel" type="text" name="tussenvoegsel">
</div>
</div>
<div class="form_element">
<label for="achternaam">Last name</label>
<input type="text" name="achernaam" id="achternaam">
</div>
<div class="form_element">
<label for="email">Email address</label>
<input type="email" name="email" id="email">
</div>
<div class="form_element">
<label for="birthday">Birthday</label>
<input type="date" name="birthday" id="birthday">
</div>
<div class="form_element">
<label for="start_date">Plan start date</label>
<input type="date" name="start_date" id="start_date">
</div>
<div class="form_element">
<label for="bank">Bank details</label>
<input type="text" name="bank" id="bank">
</div>
<div class="form_element">
<input id="order" type="submit" value="Order plan">
</div>
</form>
</section>
</main>
<!-- Footer met copyright. -->
<footer>
<p>Copyright 2020 Stein Bergergervoet</p>
</footer>
</body>
</html>