-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
36 lines (36 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<title>MaxCDN Chrome Options</title>
<script src="assests/js/options.js"></script>
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<form id="form">
<h3>Options:</h3>
<fieldset>
<legend>Go to the <a href="https://cp.maxcdn.com/account/api" target="_blank">API Control Panel</a> to get started.</legend>
<label for="consumer-key">
<strong>Consumer Key:</strong>
<br />
<input type="password" id="consumer-key" />
</label>
<hr />
<label for="consumer-secret">
<strong>Consumer Secret:</strong>
<br />
<input type="password" id="consumer-secret" />
</label>
<hr />
<label for="company-alias">
<strong>Company Alias:</strong>
<br />
<input type="text" id="company-alias" />
</label>
</fieldset>
<button class="btn btn-primary" type="submit" id="submit">Save</button>
</form>
</div>
</body>
</html>