-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
64 lines (60 loc) · 1.23 KB
/
index.php
File metadata and controls
64 lines (60 loc) · 1.23 KB
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
<html>
<head>
<style>
body {
background-image: linear-gradient(to right, #232526 0%, #414345 51%, #232526 100%);
font-family:serif;
letter-spacing: 0.1em;
color:white;
font-size:50px;
}
#container{
position:absolute;
height:auto;
width:35%;
left: 35%;
top:16%;
background:rgba(0,0,0,0.1);
border: 1px solid transparent;
border-radius: 10px;
text-align:center;
padding-bottom: 20px;
padding-top:20px;
margin-bottom: 80px;
}
input[type="text"],input[type="password"]
{
padding: 7px 10px;
font-size:40px;
margin:10px;
width:60%;
outline:0;
border:0px transparent;
border-radius: 10px;
}
input[type="submit"]
{
background: :black;
background-color: black;
padding:10px;
font-size:25px;
margin:10px;
width:60%;
border:0px transparent;
border-radius:10px;
color:white;
}
input[type="submit"]:hover
{
opacity:0.8;
}
</style>
<body>
<div id="container">
<form action="validate.php" method="post">
Username: <input type="text" name="login"><br>
Password: <input type="password" name="password"><br>
<input type="submit" value="Submit" method="post">
</form>
</body>
</html>