-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
28 lines (22 loc) · 910 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>VSTS-GO Extension Options</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="optionsContainer">
<form id="optionsForm">
<label for="inputDomain">Domain</label> (https://{youraccount}.visualstudio.com):
<input class="options" type="url" id="inputDomain" required><br>
<Label for="inputCollection">Collection</Label>
<input class="options" type="text" id="inputCollection" required><br>
<Label for="inputAccessToken">Accesstoken</Label> <a href="https://www.visualstudio.com/en-us/docs/integrate/get-started/authentication/pats">( ? )</a>:
<input class="options" type="text" id="inputAccessToken" required pattern="[a-zA-Z0-9]+" title="Alphanumeric only">
<button id="save">Save</button>
</form>
</div>
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>