-
Notifications
You must be signed in to change notification settings - Fork 0
/
registration.html
58 lines (45 loc) · 2.39 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!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">
<link rel="stylesheet" href="registration.css">
<title>Registration</title>
<script type="text/javascript" defer src="reg.js"></script>
</head>
<body>
<div class="container">
<div class="left-side">
<p>welcome to our<br>website</p>
</div>
<div class="content-side">
<div class="login-heading">
<img src="Images/agzone-logo.png" alt="AgZone" title="AgZone">
</div>
<div class="sub-heading">
<p>Create Your Free Account</p>
</div>
<div id="error"></div>
<div class="form">
<form action="registration.php" method="post" id="form" >
<label for="fname">Username</label><br>
<input type="text" id="UserName" name="UserName" class="fname" placeholder="Sample852#" required><br>
<label for="email">Email</label><br>
<input type="email" id="Email"name="Email" class="email" placeholder="Example@email.com" required><br>
<label for="phoneno">MobileNo</label><br>
<input type="tel" id="MobileNo" name="MobileNo" class="phoneno" placeholder="07########" required><br>
<label for="password">New Password</label><br>
<input type="password" id="Npassword" name="Npassword" class="password" placeholder="Enter Password" required><br>
<label for="cpassword">Confirm Password</label><br>
<input type="password" id="Cpassword" name="Cpassword" class="cpassword" placeholder="Confirm Password" required><br>
<input type="submit" id="submit" name="submit" value="Create your account">
</form>
</div>
<div class="sign-in-option">
<p>Already have an account? <a href="login.html">Sign in</a></p>
</div>
</div>
</div>
</body>
</html>