-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
34 lines (31 loc) · 1.61 KB
/
signup.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset=utf-8">
<meta name="description" content="Ecommerce Website">
<meta name="author" content="Fawaz ahamed">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="An HTML Based Electronic Ecommerce Store">
<title>Sign Up</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="sign.css">
</head>
<body>
<div class="register-photo">
<div class="form-container">
<div class="image-holder"></div>
<form>
<h2 class="text-center"><strong>Create</strong> an account.</h2>
<div class="form-group"><input class="form-control" type="email" name="email" placeholder="Email"></div>
<div class="form-group"><input class="form-control" type="password" name="password" placeholder="Password"></div>
<div class="form-group"><input class="form-control" type="password" name="password-repeat" placeholder="Password (repeat)"></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 license terms.</label></div>
</div>
<div class="form-group"><button class="btn btn-primary btn-block" type="submit">Sign Up</button></div><a href="login.html" class="already">You already have an account? Login here.</a></form>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>