mirror of
https://github.com/kmitresse/Cards-Rush.git
synced 2026-07-09 13:27:45 +00:00
56 lines
1.8 KiB
Plaintext
56 lines
1.8 KiB
Plaintext
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Register</title>
|
|
<style><%@include file="../static/css/login.css"%></style>
|
|
</head>
|
|
<body>
|
|
|
|
<main>
|
|
<section id="title">Inscription</section>
|
|
<section id="form">
|
|
<div class="border-left"></div>
|
|
<div class="flex-column register-gap">
|
|
<div>
|
|
<h1>Register</h1>
|
|
<form id="register-form" action="${pageContext.request.contextPath}/register" method="post">
|
|
|
|
<label for="email">Email :</label>
|
|
<input type="email" id="email" name="email" required>
|
|
|
|
<label for="username">Nom d'utilisateur :</label>
|
|
<input type="text" id="username" name="username" required>
|
|
|
|
<label for="password">Mot de passe :</label>
|
|
<input type="password" id="password" name="password" required>
|
|
|
|
<label for="confirmPassword">Confirmez le mot de pass :</label>
|
|
<input type="password" id="confirmPassword" name="confirmPassword" required>
|
|
|
|
<label for="birthdate">Date de naissance :</label>
|
|
<input type="date" id="birthdate" name="birthdate" required>
|
|
|
|
<label for="gender">Genre :</label>
|
|
<select name="gender" id="gender" required>
|
|
<option value="">--Choisissez une option--</option>
|
|
<option value="MALE">Homme</option>
|
|
<option value="FEMALE">Femme</option>
|
|
<option value="OTHER">Autre</option>
|
|
</select>
|
|
|
|
<input id="register-submit" type="submit" value="Register">
|
|
</form>
|
|
</div>
|
|
<div>
|
|
<hr>
|
|
<p>Déjà un compte ? <a href="${pageContext.request.contextPath}/login">Se connecter</a></p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
</body>
|
|
<script defer type="module"><%@include file="../static/js/register.js"%></script>
|
|
</html>
|