Skip to content
Snippets Groups Projects
Commit eaad19c6 authored by Yannis Devos's avatar Yannis Devos
Browse files

un peu de style

parent 9e95e072
No related branches found
No related tags found
No related merge requests found
<!DOCTYPE html>
<html lang="en">
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Create Account</title>
<link rel="stylesheet" href="./css/form.css">
</head>
<body>
<h1>Sign up</h1>
<div class="form">
<h1>REGISTER</h1>
<form action="http://localhost:8080/s4a021-web-backend/SignUp" method="post">
<input name="login" type="text" placeholder="username">
<input name="pwd" type="password" placeholder="password">
<button type="submit">Create my Account</button>
<button type="submit">Create my Account !</button>
</form>
</div>
</body>
</html>
\ No newline at end of file
body{
color: white;
background-color: #232323;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
body{
display: flex;
align-items: center;
justify-content: center;
height: 90vh;
}
.form{
text-align: center;
}
form{
display: flex;
flex-direction: column;
}
\ No newline at end of file
<!doctype html>
<html lang="en">
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/form.css">
<title>Connexion</title>
</head>
<body>
<h1>Connexion</h1>
<div class="form">
<h1>LOGIN</h1>
<form action="http://localhost:8080/s4a021-web-backend/LogIn" method="post">
<input name="login" type="text" placeholder="username">
<input name="pwd" type="password" placeholder="password">
<button type="submit">Connexion</button>
<button type="submit">Let's go !</button>
<p><i>New user ? Click <a href="./create.html">here</a> to create an account</i></p>
</form>
</div>
</body>
</html>
\ No newline at end of file
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment