-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 830 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 830 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/main.css">
<title>AnalogSea-SignUp...</title>
<meta charset="utf-8" description="Singup Page for AnalogSea Cloud Computing side">
</head>
<body>
<img src="images/logo.png" class="logo" alt="Logos">
<form action="/singup">
<legend>Sing Up</legend>
<label for="username">Email:</label>
<br>
<input type="email" name="email" placeholder="foo@email.com" required>
<label for="password">Password:</label>
<br>
<input type="password" name="password" placeholder="12345passwOrd">
<button class="singup">Sing Up</button>
<p class="forgot_password"><a href="/forgot_password/new">Forgot password?</a></p>
</form>
<div class="login">
<b>Already have a account? <a href="/login" style="color: white">Log in</a></b>
</div>
</body>
</html>