-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign-up.html
41 lines (41 loc) · 1.51 KB
/
sign-up.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
<html><head>
<meta charset="utf-8/>
<meta name=" viewport="" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Sign Up</title>
<link rel="stylesheet" href="/assets/css/bootstrap.min.css">
<link rel="stylesheet" href="/assets/css/Registration-Form-with-Photo.css">
</head>
<body>
<div class="form-container">
<form method="post">
<h2 class="text-center">
<strong>Create</strong> an account.
</h2>
<div class="form-group">
<input class="form-control" type="name" name="name" placeholder="Full Name or Business Name">
</div>
<div class="form-group">
<input class="form-contorl" type="email" name="email" placeholder="Email">
</div>
<div class="form-group">
<input class="form-control" type="tel" name="tel" placeholder="Phone Number">
</div>
<div class="form-group">
<input class="form-control" type="password" name="password" placeholder="Password">
</div>
<div class="form-group">
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input" type="checkbox">I agree to the terms and conditions.
</label>
</div>
</div>
<div class="form-group">
<button class="btn btn-primary btn-block" type="submit">Sign Up</button>
</div>
<a class="already" href="login.html">Already have an account? Login here.</a>
</form>
</div>
<script src="app.js"></script>
<script src="assets/js/frontend.js"></script>
</body></html>