-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
28 lines (27 loc) · 730 Bytes
/
index.php
File metadata and controls
28 lines (27 loc) · 730 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Lultek | Administrationspanel</title>
<link rel="stylesheet" href="assets/style/login.css" />
</head>
<body>
<div class="container">
<h1>
<a href="/admin/">
<div class="sqr"></div>
Lultek</a>
<hr class="hr-divider" />
</h1>
<div id="login-container">
<form action="control/#/" method="post">
<label>Användarnamn<br /><input type="text" name="username" /></label>
<br />
<label>Lösenord<br /><input type="text" name="password" /></label>
<br />
<a href="#">Lösenord?</a><input type="submit" name="login" value="Logga In" class="btn" />
</form>
</div>
</div>
</body>
</html>