-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
33 lines (32 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>BZ-2-Rally - Options</title>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="options.js"></script>
</head>
<body>
<h1>BZ-2-Rally Options</h1>
<div id="status"></div>
<div id="topLevelProjectIdDiv">
<h3>Top-Level Project ID</h2>
<div>ID of the project to whose children will be used to populate the Project select list.</div>
<div><input type="text" id="topLevelProjectId" size="15" value="" /></div>
</div>
<div id="defectSelectedProjectIdDiv">
<h3>Default Selected Project ID</h2>
<div>ID of the project that will be selected by default when creating a Rally defect.</div>
<div><input type="text" id="defaultSelectedProjectId" size="15" value="" /></div>
</div>
<div id="rallyUsernameDiv">
<h3>Rally Username</h2>
<div><input type="text" id="rallyUsername" size="15" value="" /></div>
</div>
<div id="rallyPasswordDiv">
<h3>Rally Password</h2>
<div><input type="password" id="rallyPassword" size="15" value="" /></div>
</div>
<button id="save">Save</button>
</body>
</html>