-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.php
148 lines (147 loc) · 6.27 KB
/
signup.php
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php ?>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Club MS8</title>
<link rel="icon" href="assets/img/favicon.png" sizes="16x16">
<meta name="author" content="Samartha">
<meta name="description" content="ClubMS8 is a group of auto-mototive enthusiast in the town of sagar. To be specific, we are the group of proud MS800 owners.">
<!-- fonticons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- aos -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<?php include 'header.php'; ?>
<div class="content">
<section id="hero" class="full-page-section bg-image" data-aos="fade">
<div class="container hero-con">
<div class="row" data-aos="fade-right">
<div class="col-md-12">
<h1 class="big-text">Sign up</h1>
<h4 class="tag">Join the community</h4>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row no-gutters">
<div class="col-md-6">
<div class="cardy bg-image cell-left" data-aos="zoom-out">
<h3 class="heading">Join the MS800Hub Family</h1>
<p>All kind of builds, any make and any models are appreciated in the community.
Hatch, sedan, classic, sports, old & rusty, van, suv... we appreciate all builds</p>
<hr>
<h3 class="heading">No limit. No rules</h3>
</div>
</div>
<div class="col-md-6">
<form class="form-dark-con cardy cell-right login-form " action="assets/php/signup.php" method="post" data-aos="fade-up">
<h3 class="heading text-center text-primary">Sign up</h1>
<div class="form-row">
<div class="form-group col-md-7">
<label>Name : </label>
<input class="form-dark" type="text" name="name" value="" required>
</div>
<div class="form-group col-md-5">
<label>Username : </label>
<input class="form-dark" type="text" name="username" value="" required>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label>Plate No. : </label>
<input class="form-dark" type="text" name="veh_id" value="" required>
</div>
<div class="form-group col-md-6">
<label>Model : </label>
<input class="form-dark" type="text" name="model" value="" required>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label>Email : </label>
<input class="form-dark" type="text" name="email" value="" required>
</div>
<div class="form-group col-md-6">
<label>Ph.No. : </label>
<input class="form-dark" type="text" name="phone" value="" required>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label>Place : </label>
<input class="form-dark" type="text" name="place" value="" required>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label>Create Password : </label>
<input id="password" class="form-dark" type="password" name="password" value="" required>
</div>
<div class="form-group col-md-6">
<label>Re-enter Password : </label>
<input id="password2" class="form-dark" type="password" name="password_re" value="" required>
<i class="fa fa-eye password-btn" onclick="toggle_password()"></i>
</div>
</div>
<div class="form-group">
<div class="col-12 text-center">
<button type="submit" name="signup" class="btn btn-primary btn-block"> Sign Up</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
</div>
<?php include 'footer.php'; ?>
<script type="text/javascript">
document.getElementById('signup').classList.add('active2');
</script>
<script type="text/javascript">
function toggle_password() {
var password=document.getElementById("password");
var password2=document.getElementById("password2");
if (password.type==='password') {
password.type='text';
}
else{
password.type='password';
}
if(password2.type==='password') {
password2.type='text';
}
else{
password2.type='password';
}
}
</script>
<script type="text/javascript">
$('.form-dark').on('focusin', function() {
$(this).parent().find('label').addClass('active-label');});
$('.form-dark').on('focusout', function() {
if (!this.value) {
$(this).parent().find('label').removeClass('active-label');}});
</script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
once: true,
duration: 1000,
});
</script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>