forked from TheoHorn/CrazyCharlyDay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
createAccount.html
177 lines (157 loc) · 6.75 KB
/
createAccount.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>L'Atelier 17.91</title>
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,700" rel="stylesheet">
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" />
<!-- Slick -->
<link type="text/css" rel="stylesheet" href="css/slick.css" />
<link type="text/css" rel="stylesheet" href="css/slick-theme.css" />
<!-- nouislider -->
<link type="text/css" rel="stylesheet" href="css/nouislider.min.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Custom stlylesheet -->
<link type="text/css" rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- HEADER -->
<header>
<!-- MAIN HEADER -->
<div id="header">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<!-- LOGO -->
<div class="col-md-3">
<div class="header-logo">
<a href="./index.html" class="logo">
<img src="./img/logo.png" alt="">
</a>
</div>
</div>
<!-- /LOGO -->
</div>
<!-- row -->
</div>
<!-- container -->
</div>
<!-- /MAIN HEADER -->
</header>
<!-- /HEADER -->
<!-- NAVIGATION -->
<nav id="navigation">
</nav>
<!-- /NAVIGATION -->
<!-- SECTION -->
<div class="section">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<div class="col-md-7">
<!-- Billing Details -->
<div class="billing-details">
<div class="section-title">
<h3 class="title">Créer un compte</h3>
</div>
<div class="form-group">
<input class="input" type="text" name="first-name" placeholder="Prénom">
</div>
<div class="form-group">
<input class="input" type="text" name="last-name" placeholder="Nom">
</div>
<div class="form-group">
<input class="input" type="email" name="email" placeholder="Email">
</div>
<div class="form-group">
<input class="input" type="text" name="address" placeholder="Adresse">
</div>
<div class="form-group">
<input class="input" type="text" name="city" placeholder="Ville">
</div>
<div class="form-group">
<input class="input" type="text" name="country" placeholder="Pays">
</div>
<div class="form-group">
<input class="input" type="text" name="zip-code" placeholder="Code postal">
</div>
<div class="form-group">
<input class="input" type="tel" name="tel" placeholder="Téléphone">
</div>
<div class="form-group">
<input class="input" type="login" name="login" placeholder="Pseudo">
</div>
<div class="form-group">
<input class="input" type="password" name="password" placeholder="Mot de passe">
</div>
<a href="#" class="primary-btn order-submit">Créer mon compte</a>
</div>
<!-- /Billing Details -->
</div>
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /SECTION -->
<!-- FOOTER -->
<footer id="footer">
<!-- top footer -->
<div class="section">
<!-- container -->
<div class="container">
<!-- row -->
<div class="row">
<div class="col-md-3 col-xs-6">
<div class="footer">
<h3 class="footer-title">Contactez nous</h3>
<ul class="footer-links">
<li><a href="#"><i class="fa fa-map-marker"></i>6 Rue Yvan Goll 57050 Metz</a></li>
<li><a href="#"><i class="fa fa-phone"></i>06 14 34 35 17</a></li>
<li><a href="#"><i class="fa fa-envelope-o"></i>[email protected]</a></li>
</ul>
</div>
</div>
<div class="clearfix visible-xs"></div>
<div class="col-md-3 col-xs-6">
<div class="footer">
<h3 class="footer-title">Information</h3>
<ul class="footer-links">
<li><a href="#">A propos</a></li>
<li><a href="#">Politique de confidentialité</a></li>
<li><a href="#">Commandes et retours</a></li>
<li><a href="#">Termes & Conditions</a></li>
</ul>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="footer">
<h3 class="footer-title">Service</h3>
<ul class="footer-links">
<li><a href="#">Mon compte</a></li>
<li><a href="./checkout.html">Panier</a></li>
<li><a href="#">Suivre ma commande</a></li>
<li><a href="./admin.html">Interface admin</a></li>
</ul>
</div>
</div>
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /top footer -->
</footer>
<!-- /FOOTER -->
<!-- js script -->
<script src="modules/main.js"></script>
</body>
</html>