-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
33 lines (32 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<title>W3.CSS Template!</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
</head>
<body id="login-body">
<!--<H1 id="logo">WN</H1>-->
<H1 id="title">WasteNot</H1>
<div id='content' class="container">
<form action="index.html" class="login-area">
First Name<br>
<input type="text" name="fname" placeholder="Enter name"><br><br>
Email<br>
<input type="email" name="email" placeholder="Enter email"><br><br>
Password<br>
<input type="password" name="password" placeholder="Enter password"><br><br>
<input type="submit" value="Signup" id="submit-button"><br><br><br><br>
<a href="login.html" id="forgot-password">Already a member?</a>
</form>
</div>
</body>
</html>