-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
82 lines (77 loc) · 1.93 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
<html>
<head>
<title>Signup Page!</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
input[type="text"],
input[type="password"],
select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
#form {
border-radius: 10px;
background-color: #f2f2f2;
padding: 20px;
margin-top: 50px;
margin-left: auto;
margin-right: auto;
width: 600px;
}
</style>
</head>
<body
style="
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
url('img/bg.jpg');
background-position: center;
background-size: cover;
"
>
<h1 style="color: white; text-align: center">Signup Page</h1>
<div id="form">
<form action="/login" method="POST">
<h2>Enter signup details</h2>
<br />
Username:
<input
type="text"
name="nm"
placeholder="Enter your username..."
/><br /><br />
Password:
<input
type="password"
name="pwd"
placeholder="Enter your password..."
/><br /><br />
Re enter Password:
<input
type="password"
name="pwd"
placeholder="Re enter your password..."
/><br /><br />
<center>
<input
type="submit"
class="btn btn-warning btn-lg"
style="width: 150px"
value="Submit"
/>
</center>
</form>
<br />
</div>
</body>
</html>