blob: c8a96f0ad9fc80cc9e0a650cf0535810bada7ff6 (
plain)
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
|
<html>
<head>
<title>Dachai's Music</title>
<link rel="icon" type="image/x-icon" href="./res/dachai.ico">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, target-densityDpi=device-dpi">
<link rel="stylesheet" href="./res/admin.css">
<style type="text/css">
#container {
margin:0 auto;
max-width: 500px;
}
form .title {
display:block;
font-size:0.8em;
margin-bottom: 3px;
}
form .section{
margin-bottom: 10px;
padding: 5px;
background: #efefef;
}
form .text {
width: 100%;
}
#login_site_link {
text-decoration:none;
color:black;
padding:0 5px;
font-size: 12px;
}
#login_site_link:hover {
color:white;
background:black;
}
</style>
</head>
<body>
<div id="container">
<label style="float:left;display:block; margin-bottom:10px;">Login</label>
<a id="login_site_link" href="index.php" style="float:right;display:block; margin-bottom:10px;">Site</a>
<div style="clear:both"></div>
<form action="authentication.php" method="post" enctype="multipart/form-data">
<div class="section">
<label class="title" for="token" >token:</label>
<input class="text" type="text" name="token" /><br/>
</div>
<input style="float:right" type="submit" value="Login" name="submit"/>
</form>
</div>
</body>
</html>
|