-
Notifications
You must be signed in to change notification settings - Fork 0
/
registration.html
30 lines (30 loc) · 946 Bytes
/
registration.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
29
30
<!doctype html>
<html>
<head>
<title>
Registration
</title>
<link rel="stylesheet" href="CSS/Styler.css">
<script src="Java/register.js"></script>
</head>
<body>
<h1 style="height: 100px width :10px; "><center><i>Hotel Clarks Amer</i></h1></center>
<div class="loginBox">
<h2>Sign Up Here</h2>
<form name="MyForm" onsubmit="validate()">
<p>Name:</p>
<input type="text" name="name" placeholder="Enter Full Name" required>
<p>Email</p>
<input type="text" name="email" placeholder="Enter Email" required>
<p>Contact No. :</p>
<input type="text" name="pno" placeholder="10 digit Mobile no." required>
<p>Password</p>
<input type="password" name="Pass" placeholder="Enter Password" required>
<p>Re-Enter Password:</p>
<input type="password" name="Passc" placeholder="Confirm Password" required>
<input type="submit" value="SignUp">
<a href="ClarksAmer.html">I already Have an account.</a>
</form>
</div>
</body>
</html>