-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsignup.html
48 lines (32 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<title>Signup</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
<script src="https://unpkg.com/just-validate@latest/dist/just-validate.production.min.js" defer></script>
<script src="/js/validation.js" defer></script>
</head>
<body>
<h1>Signup</h1>
<form action="process-signup.php" method="post" id="signup" novalidate>
<div>
<label for="name">Name</label>
<input type="text" id="name" name="name">
</div>
<div>
<label for="email">email</label>
<input type="email" id="email" name="email">
</div>
<div>
<label for="password">Password</label>
<input type="password" id="password" name="password">
</div>
<div>
<label for="password_confirmation">Repeat password</label>
<input type="password" id="password_confirmation" name="password_confirmation">
</div>
<button>Sign up</button>
</form>
</body>
</html>