-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.html
More file actions
107 lines (91 loc) · 4.1 KB
/
SignUp.html
File metadata and controls
107 lines (91 loc) · 4.1 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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Sign Up</title>
<link rel="stylesheet" href="index.css">
<script type="text/javascript" src="validations.js"></script>
</head>
<body>
<div class="header">
<div id="page-title">
<button type="button" name="home-button" id="home-button" onclick="document.location.href='index.php'"></button>
<h1>BeSanta : Donation System</h1>
<p class="slogan">Let's be someone's Santa!</p>
</div>
</div>
<div class="main-container">
<br>
<div class="Forms" style="margin-top: 0%;">
<h1>Sign Up</h1>
<form class="Register-forms" onsubmit="return validate();" action="signup.php" method="POST">
<label>Username : </label>
<input type="text" id="username" name="username" size="30" placeholder="Enter username" maxlength="50">
<label id="un" style="visibility: hidden; color: red;">Invalid</label><br><br>
<label>Email : </label>
<input type="email" id="emailid" name="email" size="30" placeholder="Enter your email" maxlength="50">
<label id="a0" style="visibility: hidden;">Invalid</label>
<br><br>
<label>Mob No. : </label>
<input type="number" id="mob" name="mobno" value="" maxlength="10" placeholder="Enter your 10 digit mobile number">
<label id="a1" style="visibility: hidden;">Invalid</label>
<br><br>
<label>Address : </label>
<input type="text" id="add" name="address" maxlength="200" size="40" placeholder="Enter your address"><br><br>
<label>Country : </label>
<select id="country" class="" name="country">
<option value="" selected disabled>Select country</option>
<option value="INDIA">India</option>
<option value="USA">USA</option>
<option value="JAPAN">Japan</option>
<option value="KUWAIT">Kuwait</option>
<option value="SOUTH KOREA">South Korea</option>
<option value="SRI LANKA">Sri Lanka</option>
<option value="THAILAND">Thailand</option>
<option value="AUSTRALIA">Australia</option>
</select>
<br><br>
<label>Age : </label>
<input id='age' type="number" name="age">
<label id="a2" style="visibility: hidden;">Invalid</label>
<br><br>
<label>Gender : </label><br>
<input type="radio" id="male" name="gender" value="Male">Male <br>
<input type="radio" id="female" name="gender" value="Female">Female <br>
<input type="radio" id="others" name="gender" value="Others">Others <br><br>
<label>DoB : </label>
<input id="dob" type="date" name="dob"><br><br>
<label>Password : </label>
<input id="password" type="password" name="password" placeholder="Enter your password">
<label id="pw" style="visibility: hidden; color: red;">Invalid</label><br>
<label></label>
<br>
<input type="checkbox" id="tnc" name="tnc" value="agree">Do you agree with the terms and conditons?<br><br>
<input type="submit" id="submitButton" class="buttons" name="Submit" value="Sign Up">
<input type="reset" class="buttons" name="Reset" value="Reset"><br><br>
<p>Already have an account?
<button type="button" name="login" id="login" onclick="window.open('SignIn.html')">Log In</button>
</p>
</form>
</div><br>
</div>
<div class="footer" id="page-footer">
<div class="" id="aboutus">
<h3>About Us</h3>
<p style="position:relative;">
We, the team of BeSanta are from Goa, India who help you find the right people for you to donate through this Website
</p><br>
</div>
<div class="" id="Quicklinks">
<h3>Quick Links</h3>
<p>
<a class="links" href="contact.html">Contact Us</a>
<a class="links" href="Search-Display.html">Search Items</a>
<a class="links" href="AddItem.html">Add Item</a>
<a class="links" href="DeleteItem.html">Delete Items</a>
<a class="links" href="UpdateItem.html">Update Items</a>
</p>
</div>
</div>
</body>
</html>