Initial commit

This commit is contained in:
2020-12-12 18:38:31 +01:00
commit f877b78f33
117 changed files with 23104 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<h1>Connexion à l'espace enseignant</h1>
<%= form_for @conn, Routes.session_path(@conn, :new), [as: :session], fn f -> %>
<%= label f, "Identifiant" %>
<%= text_input f, :username, placeholder: "Utilisateur" %>
<%= label f, "Mot de passe" %>
<%= password_input f, :password %>
<%= submit "Se connecter" %>
<% end %>