-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistration.php
More file actions
45 lines (40 loc) · 1.76 KB
/
registration.php
File metadata and controls
45 lines (40 loc) · 1.76 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
<?php include('server.php') ?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php include 'header.php';?>
<body onload="firstfocus();">
<h4>Welcome to Free-Gigs,the Free Concert Website</h4>
<div class="wrapper">
<header>
<h3><a href="index.php"> Home</a></h3>
</header>
<section>
<div class="container">
<br> <p class="text-center">Fill all the details to Register </p>
<hr>
<div class="form_settings">
<form id="login-form" class="form" name="registration" action="registration.php" method="post">
<?php include('errors.php'); ?>
<p><span for= "firstname">First Name</span><br>
<input class="contact" type="text" name="firstname" onblur="allLetter()" value="" /></p>
<p><span for="lastname">Last Name</span><br>
<input class="contact" type="text" name="lastname" onblur="allLetter()" value=""/></p>
<p><span for="mobile">Mobile Number</span><br>
<input class="contact" type="text" name="mobile" onblur="mobile_validation(5,12)"value=""/></p>
<p><span for= "dob">Date of Birth</span><br>
<input class="date" type="date" name="dob" value="" /></p>
<p><span for= "passid">Password</span><br>
<input class="contact" type="password" name="passid" onblur="passid_validation(7,12)" value="" /></p>
<p><span>Confirm Password</span><br>
<input class="contact" type="password" name="password_2" value="" /></p>
<p style="padding-top: 15px"><span> </span><input class="submit" type="submit" name="reg_user"/></p>
</form>
</div>
</section>
<footer>
<p>Free-Gigs <?php echo date ("Y"); ?></p>
</footer>
</div>
</body>
</html>