-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
33 lines (29 loc) · 1.08 KB
/
options.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
<html>
<head>
<title>Gists extension options</title>
<link rel="shortcut icon" href="assets/icon.png" type="image/png">
<link href="https://fonts.googleapis.com/css2?family=Google+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/bootstrap.min.css">
</head>
<body class="container">
<br>
<div class="card">
<h5 class="card-header">Modifier mes options</h5>
<div class="card-body">
<div class="form-group">
<label for="username">Username:</label>
<input type="text" class="form-control form-control-lg" name="username" id="username">
</div>
<div class="form-group">
<label for="token">Token:</label>
<input type="text" class="form-control form-control-lg" name="token" id="token" placeholder="Optional">
</div>
<div id="status"></div>
<br>
<button id="save" class="btn btn-outline-secondary">Save</button>
</div>
</div>
<br>
<script src="options.js"></script>
</body>
</html>