aboutsummaryrefslogtreecommitdiff
path: root/templates/invite_send_code.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/invite_send_code.html')
-rw-r--r--templates/invite_send_code.html62
1 files changed, 62 insertions, 0 deletions
diff --git a/templates/invite_send_code.html b/templates/invite_send_code.html
new file mode 100644
index 0000000..8d09b3a
--- /dev/null
+++ b/templates/invite_send_code.html
@@ -0,0 +1,62 @@
+{{define "title"}}Envoyer un code d'invitation |{{end}}
+
+{{define "body"}}
+<div class="d-flex">
+ <h4>Envoyer un code d'invitation</h4>
+ <a class="ml-auto btn btn-info" href="/">Retour</a>
+</div>
+
+ {{if .ErrorMessage}}
+ <div class="alert alert-danger mt-4">Impossible de génerer ou d'envoyer le code.
+ <div style="font-size: 0.8em">{{ .ErrorMessage }}</div>
+ </div>
+ {{end}}
+ {{if .Success}}
+ <div class="alert alert-success mt-4">
+ {{if .CodeSentTo}}
+ Un code d'invitation a bien été envoyé à <code>{{ .CodeSentTo }}</code>.
+ {{end}}
+ {{if .CodeDisplay}}
+ Le code généré est le suivant:
+
+ <p style="text-align: center; font-size: 1.6em;" class="mt-4 mb-4">
+ {{ .CodeDisplay }}
+ </p>
+ <p style="text-align: center" class="mt-4 mb-4">
+ <a href="{{.WebBaseAddress}}/invitation/{{ .CodeDisplay }}">{{.WebBaseAddress}}/invitation/{{.CodeDisplay}}</a>
+ </p>
+ {{end}}
+ </div>
+ {{else}}
+ <form method="POST" class="mt-4">
+ Choisissez une option:
+
+ <div class="input-group mt-4">
+ <div class="input-group-prepend">
+ <div class="input-group-text">
+ <input type="radio" name="choice" value="display" id="choice_display" checked="true">
+ </div>
+ </div>
+ <label class="form-control" for="choice_display">
+ Afficher le code et me laisser l'envoyer
+ </label>
+ </div>
+
+ <div class="input-group mt-4">
+ <div class="input-group-prepend">
+ <div class="input-group-text">
+ <input type="radio" name="choice" value="send" id="choice_send" aria-label="Checkbox for following text input">
+ </div>
+ </div>
+ <label class="form-control" for="choice_send">
+ Envoyer le code à l'addresse suivante:
+ </label>
+ <input class="form-control" type="text" name="sendto" id="sendto" placeholder="Addresse mail..." onclick="document.getElementById('choice_send').checked = true;" />
+ </div>
+
+ <div class="form-group mt-4">
+ <button type="submit" class="btn btn-primary">Génerer le code</button>
+ </div>
+ </form>
+ {{end}}
+{{end}}