-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
83 lines (63 loc) · 2.62 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="icon" href="img/favicon.png" type="image/gif" sizes="16x16">
<title>Water My Plants | Sign Up</title>
<link href="css/index.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bree+Serif|Heebo" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.2.1/js/bootstrap.min.js"></script>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header class="main-navigation">
<div class="container nav-container">
<img src="img/logo.jpg" class="logo-heading" alt="Water my Plants! logo">
<!-- <img class="menu-button" src="img/menu.png" /> -->
<nav class="nav">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="#">My Plants</a>
<!-- <a class="nav-link" href="#">Login</a> -->
</nav>
</div>
</header>
<div class="container home">
<!-- <header class="intro">
<img src= "img/header-img.jpg" alt="header image">
</header> -->
<form>
<div class="signup">
<h2>Sign Up</h2>
<p>Please fill in this form to create an account.</p>
<hr>
<label for="email"><h4>Email</h4></label>
<input type="text" placeholder="Enter Email" name="email" required>
<label for="psw"><h4>Password</h4></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<label for="psw-repeat"><h4>Repeat Password</h4></label>
<input type="password" placeholder="Repeat Password" name="psw-repeat" required>
<label>
<input type="checkbox" checked="checked" name="remember" style="margin-bottom:15px"> <h4>Remember Me</h4>
</label>
<p>By creating an account you agree to our <a href="#" style="color:dodgerblue">Terms & Privacy</a>.</p>
<div class="clearfix">
<button type="button" class="cancelbtn"><h4>Cancel</h4></button>
<button type="submit" class="signupbtn"><h4>Sign Up</h4></button>
</div>
</div>
</form>
<section class="content-bottom">
<div class="bottom-links">
<!-- <h4>Subscribe to our newsletter!</h4>
<div class="btn">Sign Up</div> -->
</div>
</section>
</div><!-- container -->
<footer class="footer">
<p>© 2019 WaterMyPlants. All rights reserved.</p>
</footer>
</body>
</html>