-
Notifications
You must be signed in to change notification settings - Fork 861
/
deploy.html
49 lines (44 loc) · 2.2 KB
/
deploy.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
39
40
41
42
43
44
45
46
47
48
49
<html>
<head>
<title>Webapp Generator</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,100' rel='stylesheet' type='text/css'>
<link href="css/main.css" rel="stylesheet">
<script src="js/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/validation.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
</head>
<body>
<div class = "container">
<div class = "col-md-3"> </div>
<div class = "col-md-6 col-xs-12" style="text-align:center">
<h3 id = "title"> Thanks for logging in to the github account. Press the button below to start the deployment process </h3>
<button id = "deploy" class = "btn btn-primary" > DEPLOY </button><br><br>
<button id = "abort" class = "btn btn-primary btn-danger" style="display:none" > ABORT </button>
<div class="upload-progress progress" style = "display:none; height:20px; margin-top:20px; margin-bottom:20px;">
<div class="progress-bar" role="progressbar" id="upload-progress-bar" style="width:0%; height: 20px;">
<span id="upload-progress-val">0%</span>
</div>
</div>
<div class = "col-md-3"> </div>
<br><br>
<div class = "col-xs-12">
<div class = "row">
<a href="http://opev-webgen-dev.herokuapp.com"><button class = "btn btn-primary"><span class = "glyphicon glyphicon-hand-left"> </span>Go to website generator</button></a>
</div>
<div id="info row">
<h3 id = "msg"> </h3>
<div id = "error"> </div>
<h4 id = "link"> </h4>
</div>
</div>
</div>
</div>
</body>
<script src="/socket.io/socket.io.js"></script>
<script src="js/deployProgress.js"></script>
</html>