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.
maettleship/public/pages/connectionView.html

39 lines
1.2 KiB

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Connection View</title>
</head>
<body>
<div class="container">
<h1>Register</h1>
<form id="registerForm">
<label for="email">Pseudo :</label>
<input type="text" id="pseudo" name="pseudo" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Register</button>
</form>
<div id="message"></div>
</div>
<div class="container">
<h1>Log in</h1>
<form id="logInForm">
<label for="email">Pseudo :</label>
<input type="text" id="pseudoLogIn" name="pseudo" required>
<label for="password">Password:</label>
<input type="password" id="passwordLogIn" name="password" required>
<button type="submit">Log in</button>
</form>
<div id="messageLogIn"></div>
</div>
<script src="../scripts/connection.js"></script>
</body>
</html>