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

29 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">
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
<link rel="stylesheet" href="assets/styles/global.css" />
<link rel="stylesheet" href="assets/styles/formStyle.css" />
<title>Maettleship</title>
</head>
<body>
<div class="form-container">
<h1 class="title">Maettleship</h1>
<form class="display-form" id="logInForm">
<h1>Log in</h1>
<input class="form-entry" type="text" id="pseudoLogIn" name="pseudo" placeholder="Pseudo" required>
<input class="form-entry" type="password" id="passwordLogIn" name="password" placeholder="Password" required>
<button class="btn form-validation-btn" type="submit">Log in</button>
</form>
<p class="sub-text">No account ? <a href="/register">Sign up !</a> </p>
<div id="messageLogIn"></div>
</div>
<script src="../scripts/connection.js"></script>
</body>
</html>