-
Notifications
You must be signed in to change notification settings - Fork 0
/
signIn.php
156 lines (123 loc) · 2.82 KB
/
signIn.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
<?php
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Blues || Registration</title>
<style>
*{
--light:#DBECF4;
--navy:#194569;
--orange:#ee6c4f;
--white:white;
margin:0;
padding:0;
text-decoration:none;
list-style:none;
boxing-sizing:border-box;
}
.cont_form{
display:flex;
justify-content:center;
margin:0;
align-item:center;
background:linear-gradient(var(--navy),var(--light));
}
.main_form{
background:var(--white);
height:400px;
width:250px;
border-radius:10px;
display:flex;
justify-content:center;
padding:20px;
margin:50px;
}
input{
height:20px;
border-radius:5px;
border:1px solid var(--orange);
background:var(--bg);
height:auto;
width:230px;
margin:2px;
}
label {
color:var(--navy);
}
.btn_reg{
position:absolute;
left:390px;
background-color: var(--navy);
height:30px;
width:200px;
color:white;
border:0;
border-radius:5px;
}
footer{
display:flex;
justify-content:center;
background:var(--navy);
color:white;
height:150px;
width:100%;
line-height:170px;
}
.tag_blues{
font-weight:bold;
font-size:50px;
text-tranform:uppercase;
margin:70px;
text-align:center;
}
.have{
text-align:center;
background-color:black;
text-allign:center;
padding:7px;
margin:10px;
height:20px;
width:200px;
border-radius:5px;
}
a{
color:white;
text-decoration:none;
}
#ask_reg{
color:grey;
font-size:12px;
text-align:center;
}
</style>
</head>
<body>
<div class="cont_form">
<div class="main_form">
<form action="" method="POST" autocomplete="OFF">
<label class="tag_blues">Blues</label> </br>
<label>Fullname:</label></br>
<input type="text" name="fullname" placeholder=" Fullname" value=""> </br>
<label>Username:</label> </br>
<input type="text" name="username" placeholder=" Username" value=""></br>
<label>E-mail:</label></br>
<input type="email" name="email" placeholder=" E-mail" value=""> </br>
<label>Password:</label></br>
<input type="password" name="password" placeholder=" Password" value=""></br>
<label>Confirm Password:</label>
<input type="password" name="confirmpassword" placeholder=" Confirm password" value=""></br>
</br> <button type="submit" name="submit" class="btn_reg">Register</button></br>
<br>
<hr style="width:230px;float:center;margin:10px;background-color:black;">
<br>
<p id="ask_reg">Already have an account?</p>
<div class="have"><a href="Log_in.html">Log in your account</a></div>
</form>
</div>
</div>
<footer>
Dexter James Website || 2nd year BSIS || 2022
</footer>
</body>
</html>