-
Notifications
You must be signed in to change notification settings - Fork 0
/
tester.php
51 lines (43 loc) · 1.92 KB
/
tester.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Modals</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h3>Modal Demo</h3>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#loginWindow">Login Window</button>
<div class="modal fade" id="loginWindow">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">× </button>
<div class="modal-title">
<h3>Login</h3>
</div>
</div>
<div class="modal-body">
<form role="form">
<div class="form-group">
<input type="text" class="form-control" placeholder="Username">
</div>
<div class="form-group">
<input type="password" class="form-control" placeholder="password">
</div>
</form>
</div>
<div class="modal-footer">
<button class="btn btn-primary ">Login</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>