-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathinstalling.html
40 lines (39 loc) · 1.35 KB
/
installing.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
---
---
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="stylesheets/installing.css" media="screen">
<script type="text/javascript" async="" src="javascript/update-status.js"></script>
<script type="text/javascript" async="" src="javascript/software-list.js"></script>
<link rel="stylesheet" href="bootstrap/bootstrap.min.css">
<script src="javascript/jquery.min.js"></script>
<script src="bootstrap/bootstrap.min.js"></script>
</head>
<body>
{% include header.html %}
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="panel panel-default">
<div class="panel-heading">
Installing the System
</div>
<div class="panel-body" id="progress">
</div>
<div class="panel-footer">
<a href="path/to/file" download="renamed.txt" id="download-link">
<div class="download-button" id="download-button">
Waiting for the iso file. Your download link will be here.
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<br>
{% include footer.html %}
</body>
</html>