-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 813 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>AnalogSea</title>
<meta charset="utf-8" name="description" content="Signup form for AnalogSea">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<main>
<img src="images/logo.png"/>
<form method="post" action="/signup" accept-charset="UTF-8" >
<fieldset name="contact-info">
<legend>Sign up</legend>
<label for="email">Email</label><br/>
<input id="email" placeholder="[email protected]" requiered /><br/>
<label for="password">Password</label><br/>
<input id="password" placeholder="1234passwOrd" requiered /><br/>
<button type="submit">Sign up</button>
</fieldset>
<a href="/forgot_password/new">forgot password?</a>
</form>
<p><b>Already have an account?<a href="/login" style="margin-left:5px;">Log in</a></b></p>
<main>
</body>
</html>