-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
executable file
·124 lines (102 loc) · 4.74 KB
/
signup.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
<html>
<head>
<title>Sign Up</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel= "stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="index.css" type="text/css">
<link href="assets/css/style.css" rel="stylesheet">
<script src="assets/js/main.js"></script>
<style type="text/css">
.focus
{
margin-left:200px;
margin-right:200px;
margin-bottom : 100px;
margin-top:100px;
background: white;
padding : 3%;
border-radius: 15px
}
</style>
</head>
<body style = "background : #5366f4">
<header id="header" class="fixed-top d-flex align-items-center">
<div style= "background-color: #5366f4">
<div class="container" >
<div style ="margin-top : 10px;">
<nav class="nav-menu d-none d-lg-block" style = "float: left;">
<a href = "index.html"> <h2 style ="color : white;">Student grevience Portal</h2> </a>
</nav>
<nav class="nav-menu d-none d-lg-block" style = "float: right;">
<ul>
<li class="active"><a href="#header">Home</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="signup.html">Signup</a></li>
</ul>
</nav><!-- .nav-menu -->
</div>
</div>
</div>
</header>
<div class="focus" style="">
<center> <b> <h1> Create a new account </h1> </b>
<p style="font-size : 20px;"> It's Quick and easy!</p>
</center>
</br>
<div class="row">
<div class="col-lg-5">
<img src="img/signup.svg" width="600px">
</div>
<div class="col-lg-7">
<div class="col-lg-offset-5" style="margin-right: 15%;">
<form action="signup_script.php" method="POST">
<div class="form-group">
<label for="name"> Name</label>
<input type="text" class="form-control" name="name" required style="border-radius: 10px;">
</div>
<div class="form-group">
<label for="email"> E-mail</label>
<input type="email" class="form-control" name="email" required style="border-radius: 10px;">
</div>
<div class="form-group">
<label for="address"> University Registeration Number</label>
<input type="text" class="form-control" name="urn" required style="border-radius: 10px;">
</div>
<div class="form-group">
<label for="password"> Password</label>
<input type="password" class="form-control" name="password" required style="border-radius: 10px;">
</div>
<div class="form-group">
<label for="college"> Choose your college</label>
<select style="width: 252px; height: 35px; border-radius: 10px" name = "clg">
<option value ="VIT,Pune">VIT, Pune</option>
<option value = "VIIT">VIIT</option>
<option value = "VU">VU</option>
</select>
</div>
<div class="form-group">
<label for="college"> Choose your Department</label>
<select style="width: 252px; height: 35px; border-radius: 10px" name ="dept">
<option value = "Computer Engineering">Computer Engineering</option>
<option value = "ENTC">ENTC</option>
<option value = "Electronics">Electronics</option>
</select>
</div>
<button type="submit" class="btn btn-md btn-primary btn-md">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- <footer>
<div class="container ftr" id="w">
<center>
Copyright © Lifestyle Store. All Rights Reserved Contact Us: +91 7350000388
</center>
</div>
</footer>-->
</body>
</html>