-
Notifications
You must be signed in to change notification settings - Fork 0
/
Organisationregistration.html
22 lines (21 loc) · 1.29 KB
/
Organisationregistration.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<title>Donor Registration</title>
<link rel="stylesheet" type="text/css" href="static/registration.css">
</head>
<body>
<form action="Organisationregistration.php" method="POST">
<div class="container">
<h1>Organisaton Registration</h1>
Enter Username: <input type="text" name="Username" required="required" placeholder="Enter Username" /> <br/> <br/>
Enter Password: <input type="password" name="Password" required="required" placeholder="Enter password" /> <br/><br/>
Enter Name: <input type="text" name="Name" required="required" placeholder="Enter name" /> <br/><br/>
Enter Upcoming camp: <input type="text" name="upcamp" required="required" placeholder="Enter upcoming camp details" /> <br/><br/>
Enter Associations: <input type="text" name="Associations" required="required" placeholder="Enter associations" /> <br/><br/>
Enter Contact: <input type="text" name="Contact" required="required" placeholder="Enter contact" /> <br/><br/>
Enter Email: <input type="text" name="Email" required="required" placeholder="Enter valid email-ID"/> <br/><br/>
<button type="submit" value="Register"/>Register</button>
</div>
</form>
</body>
</html>