-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
41 lines (41 loc) · 1.54 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
<?php include 'redir.php'; ?>
<!doctype html>
<html>
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
<title>Firebird DB</title>
<link rel="shortcut icon" href="styles/favicon.ico">
<!-- css -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="bootstrap/css/font-awesome.css">
<link rel="stylesheet" href="styles/mystyles.css">
<!-- scripts -->
<script src="jquery/jquery.js"></script>
<script src="bootstrap/js/popper.js"></script>
<script src="bootstrap/js/bootstrap.js"></script>
</head>
<!--**********************************************************-->
<body style="background: grey">
<div class="parent">
<div style="width:250px;">
<div class="card card-login">
<div class="card-header">Вхід в систему</div>
<div class="card-body">
<form action="" method="post">
<?php include('errors.php') ?>
<div class="form-group">
<label>Логін</label>
<input class="form-control" type="text" name="login" style="text-align: center">
</div>
<div class="form-group">
<label>Пароль</label>
<input class="form-control" type="password" name="pwd" style="text-align: center">
</div>
<button type="submit" class="btn btn-primary btn-block">Увійти</button>
</form>
</div>
</div>
</div>
</div>
</body>
</html>