Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions 19BCE10108
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Introduction</title>
</head>
<body>
<p>Sign Up</p>
First name: <input type="text" placeholder="Enter First Name">
<br><br>
Last Name <input type="text" placeholder="Enter Last Name">
<br><br>
Screen Name <input type="text" placeholder="Enter Screen Name">
<br><br>
Date of Borth <input type="date">
<br><br>
Gender
<input type="radio" name="gender"> Male
<input type="radio" name=gender> Female
<br><br>
Country <input type="text">
<br><br>
E-mail <input type="email" placeholder="Enter E-mail">
<br><br>
Phone <input type="number" placeholder="Enter Phone">
<br><br>
Password <input type="password">
<br><br>
Confirm Password <input type="password">
<br><br>
<input type="checkbox"> I agree to the Terms of Use
<br><br>
<input type="button" value=Submit style="background-color:green;color:white">
<input type="button" value=Cancel style="background-color:red;color:white">


</body>
</html>