This repository was archived by the owner on Apr 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartup_template.html
78 lines (64 loc) · 3 KB
/
startup_template.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>Haileybury Mac</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='//fonts.googleapis.com/css?family=Bree+Serif|Merriweather:400,300,300italic,400italic,700,700italic' rel='stylesheet'type='text/css'>
<link rel="stylesheet" href="css/bootstrap.min.css" media="screen">
<script src="js/bootstrap.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" media="screen">
<link href="cover.css" rel="stylesheet" media="screen">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="startup">
<div class="container outside_bk">
<div id="startup_screen" class="well well-lg centerarea">
<div class="row">
<h1>Beginning to prepare your Mac</h1>
<h3>Enter your computer name and select your software bundle</h3>
<h2><i class="fa fa-apple fa-3x logo" aria-hidden="true"></i><i class="fa fa-cloud fa-3x logo" aria-hidden="true"></i>
<i class="fa fa-print fa-3x logo" aria-hidden="true"></i><i class="fa fa-wifi fa-3x logo" aria-hidden="true"></i>
<i class="fa fa-phone fa-3x logo" aria-hidden="true"></i>
</h2>
<div>
<form class="form-horizontal">
<div class="form-group">
<div class="row form_row">
<label for="computer_name" class="col-lg-4 control-label form_text">Computer Name</label>
<div class="col-lg-4">
<input type="text" class="form-control" name="computer_name" placeholder="Enter computer name">
</div>
<div class="col-lg-2">
<input type="text" class="form-control" name="computer_code" placeholder="Enter 4 digit code">
</div>
</div>
<div class="row form_row">
<label for="computer_name" class="col-lg-4 control-label form_text">Software Bundle</label>
<div class="col-lg-5">
<select name="software_option" class="form-control">
h_select_list
</select>
</div>
</div>
</div>
</form>
<div class="form-group">
<div class="row action_area">
<h2><a href='http://formParse' class="font_button"><i class="fa fa-arrow-circle-o-right fa-3x"></i></a></h2>
<h4>Install</h4>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>