-
Notifications
You must be signed in to change notification settings - Fork 0
/
registration.html
123 lines (120 loc) · 3.78 KB
/
registration.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>About us/Contact</title>
<link rel="stylesheet" href="styles/style.css" type="text/css" media="screen" />
<link rel="stylesheet" href="styles/style-registration.css" type="text/css" media="screen" />
</head>
<body>
<header>
<div id="companysLogo">
<h1>Header, logo etc.</h1>
</div>
</header>
<nav id="mainNavigation">
<ul>
<li><a href="index.html">Home Page</a></li>
<li><a href="contact.html">About us/Contact</a></li>
<li><a href="rates.html">Rates</a></li>
<li><a href="prices.html">Our services/Prices</a></li>
<li><a href="#">Log in</a></li>
</ul>
</nav>
<section id="content">
<h2>Registration</h2>
<form id="registrationForm">
<fieldset>
<h3>Fill in order to register (fields marked with * are required):</h3>
<ol>
<li>
<label for=name>Name: *</label>
<input id=name name=name type=text placeholder="First name" required autofocus>
</li>
<li>
<label for=surname>Surname: *</label>
<input id=surname name=surname type=text placeholder="Surname" required>
</li>
<li>
<label for=pesel>PESEL:</label>
<input id=pesel name=pesel type=text placeholder="PESEL">
</li>
<li>
<label for=nip>NIP:</label>
<input id=nip name=nip type=text placeholder="NIP">
</li>
<li>
<label for=phone>Phone number: *</label>
<input id=phone name=phone type=text placeholder="Phone number">
</li>
<li>
<label for=email>E-mail:</label>
<input id=email name=email type=email placeholder="[email protected]">
</li>
<fieldset id=addressForm>
<legend>Address</legend>
<li>
<label for=country>Country:</label>
<input id=country name=country type=text placeholder="Country">
</li>
<li>
<label for=city>City: *</label>
<input id=city name=city type=text placeholder="City" required>
</li>
<li>
<label for=postalCode>Postal code: *</label>
<input id=postalCode name=postalCode type=text placeholder="Postal code" required>
</li>
<li>
<label for=street>Street:</label>
<input id=street name=street type=text placeholder="Street">
</li>
<li>
<label for=houseNumber>House number: *</label>
<input id=houseNumber name=houseNumber type=text placeholder="House number" required>
</li>
<li>
<label for=flatNumber>Flat number:</label>
<input id=flatNumber name=flatNumber type=text placeholder="Flat number">
</li>
</fieldset>
<li>
<label for=login>Login: *</label>
<input id=login name=login type=text placeholder="Login" required>
</li>
<li>
<label for=password>Password: *</label>
<input id=password name=password type=password placeholder="Password" required>
</li>
<li>
<label for=repPassword>Repeat password: *</label>
<input id=repPassword name=repPassword type=password placeholder="Password" required>
</li>
</ol>
<button type=submit>Register</button>
</fieldset>
</form>
</section>
<footer>
<nav id="footerNavigation">
<ul>
<li><a href="index.html">Home Page</a></li>
<li><a href="contact.html">About us/Contact</a></li>
<li><a href="rates.html">Rates</a></li>
<li><a href="prices.html">Our services/Prices</a></li>
</ul>
</nav>
<nav id="socialFeedsNavigation">
<ul>
<li id="mail"><a href="#">e-mail</a></li>
<li id="rss"><a href="#">RSS</a></li>
<li id="twit"><a href="#">Twitter</a></li>
<li id="g"><a href="">Google+</a></li>
<li id="fb"><a href="#">Facebook</a></li>
<li id="li"><a href="#">LinkedIn</a></li>
</ul>
</nav>
<img src="images/carservice-logo.png" alt="CarService Engin Logo" id="carServiceEnginLogo" />
</footer>
</body>
</html>