-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·124 lines (94 loc) · 4.92 KB
/
index.html
File metadata and controls
executable file
·124 lines (94 loc) · 4.92 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<title>LabelMaker by Richard</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="/Assets/favIcon">
<!--Scripts-->
<!--Stylesheets-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.min.css">
</head>
<body>
<style type="text/css">
.default-label {
color: black;
}
</style>
<div class="container-fluid">
<div class="row">
<div class="col-md-3 shell">
<div id="properties " data-spy="affix" data-offset-top="5" class="col-xs-3 affix properties hidden-print">
<div id="form">
<h1>Nieuw label</h1>
<span class="icon-bar"></span>
<form method="post" class="book-properties ">
<label>Volledige naam</label>
<input placeholder="John Doe" type="text" class="name form-control"><br>
<label>Klas</label>
<input placeholder="6VA" type="text" class="class form-control" ><br>
<label>Schoojaar</label>
<input placeholder="2016/2017" type="text" class="semester form-control" ><br>
<label>School</label>
<input placeholder="Dolor College" type="text" class="school form-control" ><br>
<label>Vak</label>
<textarea placeholder="Wiskunde" rows ="2" type="text" class="subject form-control"></textarea><br>
<label>Methode</label>
<textarea placeholder="Getal & Ruimte" rows ="2" type="text" class="method form-control"></textarea><br>
<label>Soort</label>
<select class="sort form-control">
<option value="schrift">Schrift</option>
<option value="lesboek">Lesboek</option>
<option value="werkboek">Werkboek</option>
<option value="antwoorden- boek">Antwoordenboek</option>
<option value="Activiteiten- formulier">Activiteitenformulier</option>
<option value="">Overig</option>
</select>
<textarea class="add form-control" placeholder="toevoeging" type="text" name="affix"></textarea><br>
<button class"btn btn-default" type="submit">Voeg toe</button>
</form>
</div>
</div>
</div>
<div class="row col-sm-9">
<div class=" hidden-print navbar navbar-default col-xs-9">
<p class="navbar-brand">LabelMaker</p>
<button type="button" onclick="window.print();" target="_blank" class="btn btn-default navbar-btn navbar-right pull-right "><span class="glyphicon glyphicon-print" aria-hidden="true"></span></button>
<button disabled id="delete-btn" class=" btn btn-default navbar-btn navbar-right pull-right" ><span class="glyphicon glyphicon-trash" aria-hidden="true"></span></button>
</div>
<div id="labels" class="jumbotron col-xs-12">
<!--
<div class="remover col-xs-3">
<button type="button" class="btn remove btn-danger">
<img src="Assets/remove.png" width="20" height="auto" alt=""/>
</button>
</div>
-->
</div>
</div>
</div>
</div>
<div id="add-btn-mobile">
<img src="Assets/add.svg" />
</div>
</div>
<!--scripts-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.min.js" integrity="sha256-eGE6blurk5sHj+rmkfsGYeKyZx3M4bG+ZlFyA7Kns7E=" crossorigin="anonymous"></script>
<script src="script.js"></script>
<!--Google Analytics-->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-83005899-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>