-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccount.html
More file actions
33 lines (25 loc) · 1.02 KB
/
Copy pathAccount.html
File metadata and controls
33 lines (25 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Account</title>
</head>
<body>
<fieldset>
<legend>Account</legend> <br>
<label for="Email Address">Email Address*</label> <br>
<input type="email" name="Email Address" id="Email Address" placeholder="abc@gmailcom"> <br><br>
<label for="Password">Password*</label><br>
<input type="password" name="Password" id="Password" placeholder="************" maxlength="12"> <br><br>
<label for="Confirm Password">Confirm Password*</label> <br>
<input type="password" name="Confirm Password" id="Confirm Password" placeholder="************" maxlength="12"> <br>
<a href="./index.html">
<img src="./back.png" alt="Image" width="40px">
</a>
<a href="./personal.html">
<img src="./forward.png" alt="image" width="40">
</a>
</fieldset>
</body>
</html>