-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
42 lines (37 loc) · 1.08 KB
/
admin.php
File metadata and controls
42 lines (37 loc) · 1.08 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
<?php
/**
* Created by PhpStorm.
* User: Ivan
* Date: 07.09.2016
* Time: 17:07
*/
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link id="callCss" rel="stylesheet" href="themes/onlineitstore/bootstrap.min.css" media="screen"/>
<link href="themes/css/base.css" rel="stylesheet" media="screen"/>
<title>Admin Login</title>
</head>
<body>
<h3 class="productsOverviewTitle">Најава за админ</h3><br/>
<div class="productsOverview">
<form action="adminPanel.php" method="POST">
<table>
<tr>
<td class="table_data_right">Корисничко име: <input type="text" name="adminUser" required></td>
</tr>
<tr>
<td class="table_data_right">Лозинка: <input type="password" name="adminPass" width="60px" required></td>
</tr>
<tr>
<td>
<input type="submit" class="btn btn-default btn-test" value="Најава">
</td>
</tr>
</table>
</form>
</div>
</body>
</html>