-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRegistration.html
125 lines (105 loc) · 4.87 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<!-- IT21268144 | Jayasinghe J.A.M.P -->
<html>
<head>
<title>
Registration form
</title>
<link href="css/nav.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<link rel="stylesheet" href="css/footer.css">
<link rel="stylesheet" href="css/reg.css">
<script src="js/registration.js">
</script>
</head>
<body>
<section id="bimg">
<img class="logo" src="img/logo.png">
<div class="navg">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Registration.html">Registration</a></li>
<li><a href="Contact.html">Contact Us</a></li>
<li><a href="Payment.html">Payment</a></li>
<li><a href="Ebill.html">E-Bill</a></li>
<li><a href="User.html">User Account </a></li>
</ul>
</div>
<div class="search">
<input class="srch" type="search" name="" placeholder="Type to Search">
<a href="#"><button class="btn">Search</button></a>
</div>
</section>
<div class="Register-page">
<div id="error"></div>
<div class="form">
<form class="register-form" id="form" action="Registration.php" method="POST">
<h2 id="title">User Registration</h2>
<input type="text" name="fname" id="fname" placeholder="First name" required />
<input type="text" name="Lname" id="Lname" placeholder="Last name" required />
<input type="text" name="address" id="address" placeholder="Address" required />
<input type="text" name="Accnumber" id="Accnumber" placeholder="Account Number" required />
<input type="text" name="city" id="city" placeholder="City" />
<input type="text" name="province" id="province" placeholder="State/Province" required />
<input type="email" name="email" id="email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,3}" placeholder="Email"
required />
<input type="phone" name="phone" id="phone" placeholder="Phone Number" pattern="[0-9]{10}" required />
<input type="password" name="password" id="pwd" placeholder="Password"
pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{5,}" required>
<input type="password" id="cnfrmpwd" name="cnfrmpassword" placeholder="Re-enter Password" required />
<br><br>
<input type="radio" name="gender" checked>Male <br>
<input type="radio" name="gender">Female
<br><br>
<input type="checkbox" name="chkbox" class="inputStyle" id="checkBox" onclick="enableButton()"> Accept privacy
policy and terms<br><br>
<input type="submit" name="submit" id="submitbtn" value="Register" onclick="checkPassword()" disabled>
<p class="message">Already Registered? <a href="login.html">Login</a></p>
</form>
</form>
</div>
</div>
<div class="footer-dark">
<footer>
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-3 item">
<h3>About</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="User">Profile </a></li>
<li><a href="Contact.html">Contact Us</a></li>
<li><a href="Payment.html">Payment</a></li>
<li><a href="Ebill.html">E-Bill</a></li>
</ul>
</div>
<div class="col-sm-6 col-md-3 item">
<h3>Group Members</h3>
<ul>
<li><a href="IT21268144@my.sliit.lk">IT21268144 | J.A.M.P.Jayasinghe</a></li>
<li><a href="IT21268076@my.sliit.lk">IT21268076 | H.M.C.H.Karunathilaka</a></li>
<li><a href="IT21267468@my.sliit.lk">IT21267468 | Prathapa S.K.K</a></li>
<li><a href="IT21358348@my.sliit.lk">IT21358348 | Bandara S.S.A.I.S</a></li>
<li><a href="IT21356186@my.sliit.lk">IT21356186 | Kavishwara B.H.M.S</a></li>
</ul>
</div>
<div class="col-md-6 item text">
<h3>MLB_04_02_08</h3><br>
<p>Online Bill and Event Reminder</p>
</div>
<div class="col item social"><br>
<a href="https://www.facebook.com/"><i class="icon ion-social-facebook"></i></a>
<a href="https://twitter.com/?lang=en"><i class="icon ion-social-twitter"></i></a>
<a href="https://www.snapchat.com/"><i class="icon ion-social-snapchat"></i></a>
<a href="https://www.instagram.com/?hl=en"><i class="icon ion-social-instagram"></i></a>
</div>
</div>
<p class="copyright">MLB_04_02_08 © 2022</p>
</div>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/js/bootstrap.bundle.min.js"></script>
</body>
</html>