-
Notifications
You must be signed in to change notification settings - Fork 0
/
website_form.html
28 lines (27 loc) · 1.08 KB
/
website_form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Information</title>
</head>
<body>
<form >
<label for="username">Username: </label>
<input type="text" id="username" minlength="5" maxlength="10" placeholder="Enter the Username"><br>
<label for="password">Password</label>
<input type="password" id="password" placeholder="Enter Password" minlength="15" maxlength="20" ><br>
<label for="email">email</label>
<input type="email" id="email" placeholder="[email protected]"><br>
<label for="Telephone">Telephone</label>
<input type="tel" id="Telephone" pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}" ><br>
<label for="Birthday">Birthday</label>
<input type="date" id="Birthday"><br>
<label for="Quantity">Quantity</label>
<input type="number" id="Quantity" max="5" min="2">
in
<input type="reset">
<input type="submit">
</form>
</body>
</html>