-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (46 loc) · 1.98 KB
/
index.html
File metadata and controls
47 lines (46 loc) · 1.98 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
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Bling Web</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap and jQuery -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<!-- Custom JS -->
<script src="js/main.js"></script>
<script src="js/send.js"></script>
<script type="text/javascript" src="js/fetch.js"></script>
</head>
<body class="bg-primary">
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<a class="navbar-brand" href="#">
<img src="dbit.png" alt="DBIT Logo" style="width: 40px; height: 40px;">
</a>
<a class="navbar-brand" href="#">Bling Web</a>
</nav>
<div class="container">
<div class="row">
<div class="col-sm-4"></div>
<div class="col-sm-4" style="margin-top: 100px">
<div class="card">
<div class="card-header">
<h2 class="card-title text-center text-dark">Login</h2>
</div>
<div class="card-body">
<input type="text" class="form-control form-control-lg" name="username" id="id" placeholder="username">
<br>
<input type="password" class="form-control form-control-lg" name="password" id="pass" placeholder="password">
<br>
<input type="submit" class="form-control btn btn-success" onclick="login()" value="Login">
<div class="text-danger" id="result"></div>
</div>
</div>
</div>
<div class="col-sm-4"></div>
</div>
</div>
</body>
</html>