-
Notifications
You must be signed in to change notification settings - Fork 6
/
options.html
38 lines (37 loc) · 1.36 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
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Play with Docker</title>
<link href="vendor/bootstrap.min.css" rel="stylesheet">
<style>
body, section {
width: 300px;
height: 150px;
overflow-x: hidden;
}
</style>
</head>
<body>
<section>
<div class="container">
<div class="row">
<div class="col-md-12">
<form>
<div class="form-group">
<label for="pwdUrl">PWD Url</label>
<input type="text" class="form-control" id="pwdUrl" placeholder="Enter Play with Docker Url" value="http://play-with-docker.com">
</div>
<button type="submit" class="btn btn-primary save-options">Submit</button>
</form>
</div>
</div>
</div>
</section>
<script src="vendor/jquery-3.2.1.min.js"></script>
<script src="vendor/bootstrap.min.js"></script>
<script src="assets/js/options.js"></script>
</body>
</html>