-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
34 lines (30 loc) · 1.14 KB
/
popup.html
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
<!doctype html>
<html>
<head>
<title>CatchIt Job Saver</title>
<style type="text/css">
body {
margin: 20px;
white-space: nowrap;
}
</style>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
<script src="popup.js"></script>
</head>
<body>
<div align="center" style="padding:30px 0">
<h2 class="text-center">CatchIt</h2>
<h1 class="text-center"> Job Saver </h1>
<div class="container col-md-5">
<button class="btn-primary" style="margin:10px 20px" type="button" id="btnSignIn">Change Users</button>
</div>
<div class="container col-md-5">
<button class="btn-primary" style="margin:10px 20px" type="submit" id="btnSubmit">Save Job</button>
</div>
<p id="report" style="color:red;"></p>
</div>
</body>
</html>