-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.html
More file actions
46 lines (41 loc) · 1.5 KB
/
Copy pathcreate.html
File metadata and controls
46 lines (41 loc) · 1.5 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> log in page</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body class="login">
<div class = "Next">
<a href="home.html">Home</a>
<a href="login.html">Login</a>
<a href="create.html">Join</a>
<a href="first_page.html">About</a>
</div>
<br><br>
<div>
<form action="/data.php" method="post" autocapitalize="characters">
Full Names <br>
<input type="text" name="Name" placeholder="firstname" required><br>
Email<br>
<input type="email" placeholder="valid email" required>
<br>
Date of birth <br>
<input type="date" required><br>
Password: <br>
<input type="password" name="Password" placeholder="password" required><br>
Repeat Password <br>
<input type="password" name="Password" placeholder="password" required><br>
<br>
<input type="submit" class="blue" value="Sign up">
</form><br><br>
<div class ="fromlog">
<br>
Already have an account?
<a class="account" href="login.html" > Login</a>
<br><br>
</div>
</div>
<canvas width="200" height="200"></canvas>
</body>
</html>