-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdminNeb.html
More file actions
74 lines (68 loc) · 2.59 KB
/
AdminNeb.html
File metadata and controls
74 lines (68 loc) · 2.59 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
<template name="Adminneb">
Page des admins de la Neb
{{#if isAdminNeb}}
<!-- réalisé sur http://bootsnipp.com/forms -->
<form class="adminform form-horizontal">
<fieldset>
<!-- Textarea -->
<div class="form-group">
<label class="col-md-4 control-label" for="textarea">Notification</label>
<div class="col-md-4">
<textarea class="form-control" id="textarea" name="textarea">Message à envoyer</textarea>
</div>
</div>
<!-- Button -->
<div class="form-group">
<label class="col-md-4 control-label" for="send"></label>
<div class="col-md-4">
<button id="send" name="send" type="submit" class="btn btn-primary">Envoyer</button>
</div>
</div>
<!-- Multiple Checkboxes -->
<div class="form-group">
<label class="col-md-4 control-label" for="checkboxes">Pizza</label>
<div class="col-md-4">
<div class="checkbox">
{{#each listPizza}}
<label for="checkboxes" class="pizza-check">
<input type="checkbox" name="checkboxes" id="checkboxes" checked="{{checked}}" />
{{name}}
</label>
{{/each}}
</div>
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label" for="checkboxes">Petits plats</label>
<div class="col-md-4">
<div class="checkbox">
{{#each listPlat}}
<label for="checkboxes" class="plat-check">
<input type="checkbox" name="checkboxes" id="checkboxes" checked="{{checked}}" />
{{name}}
</label>
{{/each}}
</div>
</div>
</div>
<!-- Multiple Checkboxes -->
<div class="form-group">
<label class="col-md-4 control-label" for="checkboxes">Beer</label>
<div class="col-md-4">
<div class="checkbox">
{{#each listBeer}}
<label for="checkboxes" class="beer-check">
<input type="checkbox" name="checkboxes" id="checkboxes" checked="{{checked}}" />
{{name}} ( {{price}} €)
</label>
{{/each}}
</div>
</div>
</div>
</fieldset>
</form>
{{else}}
<h1>Connecte-toi sur MyECP</h1>
<button id="myecp-login" class="button button-positive">Se connecter !</button>
{{/if}}
</template>