-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegistration.html
More file actions
29 lines (29 loc) · 1.3 KB
/
Registration.html
File metadata and controls
29 lines (29 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Registration Form</title>
<link rel="stylesheet" href="module.css" />
</head>
<body>
<h3>Unsanitized input</h3>
<h1>Registration Form</h1>
<form method="post" action='Registration.php'>
<fieldset>
<label for="First_name">Enter Your First Name: </label>
<input id="First_name" name="First_name" type="text" placeholder="First Name" required />
<label for="Last_name">Enter Your Last Name: </label>
<input id="Last_name" name="Last_name" type="text" placeholder="Last Name" required />
<label for="Username">Enter Preferred Username: </label>
<input id="Username" name="username" type="text" placeholder="username" required />
<label for="Email_ID">Enter Your Email: </label>
<input id="Email_ID" name="email" type="text" placeholder="email" required/>
<label for="Password">Create a New Password: </label>
<input id="Password" name="password" type="text" placeholder="password" required/>
<label for="Contact_Number">Enter Your Contact Number: </label>
<input id="Contact_Number" name="number" type="text" placeholder="number" required />
</fieldset>
<input type="submit" value="Submit" />
</form>
</body>
</html>