-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
74 lines (72 loc) · 1.89 KB
/
index.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
<!DOCTYPE HTML>
<html>
<head>
<title>Zip Manager Login</title>
<meta charset="UTF-8"/>
<link rel="shortcut icon" href="assets/img/favicon.ico"/>
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap-responsive.min.css" />
</head>
<body>
<div class="container">
<div class="content">
<div class="row">
<div class="login-form">
<h2>Zip Manager Login</h2>
<hr>
<form action="assets/VerifyLogin.php" method="post">
<input class="fullWidth" type="text" name="username" placeholder="Username">
<input class="fullWidth" type="password" name="password" placeholder="Password">
<select class="fullWidth" name="profile" >
<option>Soartex 1.5.x</option>
<option>Soartex 1.4.x</option>
<option>Soartex 1.2.5</option>
<option>Custom</option>
</select>
</br>
<button class="btn btn-success fullWidth" type="submit" name="submit">
Sign in
</button>
</form>
</div>
</div>
</div>
</div>
</body>
<!--Custom Style(from example website)-->
<style type="text/css">
/*my own*/
.fullWidth {
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html, body {
background-color: #eee;
}
body {
padding-top: 40px;
}
.container {
width: 320px;
}
/* The white background content wrapper */
.container > .content {
background-color: #fff;
padding: 20px;
-webkit-border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
border-radius: 10px 10px 10px 10px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.15);
box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
.login-form {
text-align:center;
margin-left: 65px;
margin-right: 45px;
}
</style>
</html>