-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
245 lines (244 loc) · 9.04 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/18718c7391.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/scrollreveal"></script>
<!-- bootstrap styles -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
:root {
--bg: black;
--white: whitesmoke;
font-weight: bold;
}
::-webkit-scrollbar {
display: none;
}
.navbar {
background: linear-gradient(90deg, rgba(25,25,25,0.8) 0%, rgba(25,25,25,0) 30%, rgba(25,25,25,0) 70%, rgba(25,25,25,0.8) 100%);
}
html, body {
background-color: var(--bg);
font-weight: bold;
scrollbar-width: none;
}
.nav-home {
text-decoration: none;
font-size: x-large;
color: var(--white);
padding-left: 3%;
text-shadow: 0px 0px 10px black;
}
.btn {
margin-right: 1%;
text-shadow: 0px 0px 10px black;
}
.btn, .btn:hover{
color: var(--white);
font-weight: bold;
font-size: x-large;
}
.btn:focus, .btn::after, .btn::before {
border: 0;
}
.offcanvas-body {
margin: 0;
padding: 0;
background-color: var(--bg);
}
.nav-list {
list-style-type: none;
padding: 0 10px;
font-weight: bolder;
}
.nav-list li {
margin: 30px 10px;
}
.nav-list li a {
text-decoration: none;
color: var(--white);
font-size: xx-large;
}
.offcanvas-title {
font-weight: bolder;
padding-left: 5px;
margin: 0;
}
.carousel-item {
max-height: 100vh;
}
.carousel-item img{
object-fit: cover;
}
.but {
background-color: whitesmoke;
color: #252525;
padding: 5px 20px;
border: 0;
text-decoration: none;
border-radius: 10px;
}
.carousel-caption {
background: radial-gradient(rgba(25,25,25,0.3) 0%, rgba(25,25,25,0) 40%);
}
.carousel-caption p, .carousel-caption h5 {
text-shadow: 0px 0px 10px black;
}
@media only screen and (max-width: 768px) {
.carousel-item {
margin-top: 70px;
}
.holder {
flex-direction: column;
margin-top: 100px;
}
}
.cont {
display: flex;
width: 300px;
justify-content: space-around;
}
.bar {
padding: 0;
}
.holder {
display: flex;
justify-content: center;
color: #ffffff;
padding: 10%;
gap: 1%;
}
.container {
display: flex;
flex-direction: column;
gap: 20px;
width: 450px;
}
.container > h1 {
text-align: center;
}
.input-groups {
display: flex;
justify-content: space-between;
}
input:not([type=submit]){
border-radius: 30px;
padding: 5px 10px 7px;
}
input:focus{
outline: none;
}
input[type=submit]{
margin: 0 0 0 auto;
width: 100px;
color: #ffffff;
background-color: green;
border-radius: 30px;
border: 0;
padding: 5px 20px 7px;
}
</style>
</head>
<body>
<!-- navbar start -->
<nav class="navbar fixed-top">
<a class="nav-home" href="./index.php">VResume</a>
<button class="btn" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasWithBothOptions" aria-controls="offcanvasWithBothOptions"><i class="fa-solid fa-bars" style="color: #ffffff;"></i></button>
<div class="offcanvas offcanvas-start text-bg-dark" data-bs-scroll="true" data-bs-backdrop="true" tabindex="-1" id="offcanvasWithBothOptions" aria-labelledby="offcanvasWithBothOptionsLabel">
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasWithBothOptionsLabel">VResume</h5>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body bg-black">
<ul class="nav-list">
<li><a href="./index.php"><i class="fa-solid fa-house fa-sm" style="color: #ffffff;"></i> Home</a></li>
<li><a href="list.php"><i class="fa-solid fa-list fa-sm" style="color: #ffffff;"></i> List</a></li>
<li><a href="upload.php"><i class="fa-solid fa-upload fa-sm" style="color: #ffffff;"></i> Upload</a></li>
</ul>
</div>
</div>
</nav>
<!-- navbar end -->
<div class="holder">
<div class="signup">
<form class="modal-content animate" action="login.php" method="post">
<div class="container">
<h1>LOGIN</h1>
<div class="input-groups">
<label for="username">Username </label>
<input type="text" placeholder="Enter Username" name="username" required>
</div>
<div class="input-groups">
<label for="password">Password </label>
<input type="password" placeholder="Enter Password" name="password" required>
</div>
<input type="submit" id="log" name="login" value="Login">
</div>
</form>
</div>
<div class="signup">
<form class="modal-content animate" action="login.php" method="post">
<div class="container">
<h1>SIGNUP</h1>
<div class="input-groups">
<label for="username">Username</label>
<input type="text" name="username" placeholder="Provide a Username" required>
</div>
<div class="input-groups">
<label for="password">Password</label>
<input type="password" name="password" placeholder="Provide a password" required>
</div>
<div class="input-groups">
<label for="email">Email</label>
<input type="email" name="email" id="email" placeholder="Provide your email" required>
</div>
<div class="input-groups">
<label for="age">Age</label>
<input type="number" name="age" id="age" placeholder="Provide your age" required>
</div>
<input type="submit" name="signup" value="Signup">
</div>
</form>
</div>
</div>
<!-- footer start -->
<footer class="ftr">
<div class="ftr-contain">
<div class="ftr-title">
<h1>VResume</h1>
</div>
<div class="ftr-about">
<h4>Learn more about us here.</h4>
</div>
</div>
<div class="ftr-content">
<div class="ftr-links">
<a class="git" target="_blank" href="http://github.com/bharathlakkoju/wt">
<i class="fa-brands fa-github fa-lg" style="color: #ffffff;"></i> 
Github
</a>
<a class="linkin" target="_blank" href="https://www.linkedin.com/in/bharath-lakkoju-b832a921b/">
<i class="fa-brands fa-linkedin fa-lg" style="color: #ffffff;"></i> 
LinkedIn
</a>
</div>
<div class="ftr-nav">
<a class="ftr-nav-home" href="#"><i class="fa-solid fa-house fa-sm" style="color: #ffffff;"></i> Home</a>
<a class="ftr-nav-list" href="list.php"><i class="fa-solid fa-list fa-sm" style="color: #ffffff;"></i> List</a>
<a class="ftr-nav-upload" href="upload.php"><i class="fa-solid fa-upload fa-sm" style="color: #ffffff;"></i> Upload</a>
</div>
</div>
</footer>
<!-- footer end -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>