-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
28 lines (27 loc) · 924 Bytes
/
index.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>
<meta charset="UTF-8">
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="css/site.css" rel="stylesheet">
<title>TFS CI Dashboard</title>
</head>
<body>
<div class="body-content">
<div>
<img class="home-logo" src="content/images/vslogo.png"></img>
<h1 class="welcome-text">Welcome to the TFS CI dashboard</h1>
</div>
<div class="input-group input-tfs-url">
<input id="enterTfsUrlInput" type="text" class="form-control" placeholder="Enter the tfs server url here">
<span class="input-group-btn">
<button id="enterTfsUrlButton" class="btn btn-default input-addon-button" type="button">Go!</button>
</span>
</div>
</div>
</body>
<script>
if(!window.exports) { exports = module.exports; }
</script>
<script src="index.js"></script>
</html>