You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.1 KiB
28 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Maettleship</title>
|
|
<link rel="stylesheet" href="assets/styles/global.css" />
|
|
<link rel="stylesheet" href="assets/styles/formStyle.css" />
|
|
</head>
|
|
<body>
|
|
<div class="form-container">
|
|
<h1 class="title">Maettleship</h1>
|
|
<form id="registerForm" class="display-form">
|
|
<h1>Sign up</h1>
|
|
<input class="form-entry" type="text" id="pseudo" name="pseudo" placeholder="Pseudo" required>
|
|
<input class="form-entry" type="password" id="password" name="password" placeholder="Password" required>
|
|
|
|
<button class="btn form-validation-btn" type="submit">Sign up</button>
|
|
<div id="message"></div>
|
|
</form>
|
|
|
|
<p class="sub-text">Have an account ? <a href="/">Log in !</a></p>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js"></script>
|
|
<script src="../scripts/register.js"></script>
|
|
</div>
|
|
</body>
|
|
</html> |