-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
27 lines (26 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>signup</title>
<link rel="stylesheet" href="css/signup.css">
</head>
<body>
<!-- <img src="src/istockphoto-1388281684-612x612.jpg" alt=""> -->
<div >
<p>Sign up</p>
<table>
<tr id="label"><td><label for="username">Username: </label></td></tr>
<tr id="text-input"><td><input type="text" name="username" id="username" placeholder="jhon doe"></td></tr>
<tr id="label"><td><label for="password">PAWSword:</label></td></tr>
<tr id="text-input"><td><input type="password" name="password" id="password" placeholder="*********"></td></tr>
<tr id="label"><td><label for="password">Confirm PAWSword:</label></td></tr>
<tr id="text-input"><td><input type="password" name="password" id="password" placeholder="*********"></td></tr>
<tr><td><hr color="black"/></td></tr>
<tr id="text-input"><td><input id="login"type="button" value="Sign up"></td></tr>
</table>
<p id="signup">Already a member ? <a href="login.html">Log in</a></p>
</div>
</body>
</html>