-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdmin.html
More file actions
39 lines (36 loc) · 1.19 KB
/
Admin.html
File metadata and controls
39 lines (36 loc) · 1.19 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
<template name="Admin">
Page des admins développeurs
{{#if isAdminYo}}
<h1>Compteur : {{counter}} </h1>
<!-- réalisé sur http://bootsnipp.com/forms -->
<form class="adminform form-horizontal">
<fieldset>
<!-- Button (Double) -->
<div class="form-group">
<label class="col-md-4 control-label" for="button1id">Compteur</label>
<div class="col-md-4">
<button id="button1id" class="btn btn-warning raz">Remise à zéro</button>
<button class="btn btn-success neb">Incrémenter</button>
</div>
</div>
<!-- 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>
</fieldset>
</form>
{{else}}
<h1>Connecte-toi sur MyECP</h1>
<button id="myecp-login" class="button button-positive">Se connecter !</button>
{{/if}}
</template>