Merge remote-tracking branch 'refs/remotes/origin/master'

remotes/origin/master
Maxime ROCHER 7 months ago
commit 6a90e06828

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="../styles/styleLogin.css" media="screen">
<title>Wiki Fantasy : Connexion</title>
<link rel="icon" href="../images/Logo.ico">
</head>
<body>
<h1>▶ Connexion ◀</h1>
<div class="login">
<p> <strong>Identifiant *</strong></p>
<input type="text" class="connexion" name="name" required />
<p> <strong> Mot de passe *</strong></p>
<input type="password" class="connexion" name="passwd" required />
<div class="createAccount">
<p class="createAccount">Vous n'avez pas de compte?</p>
<a href="signin.html" class="createAccount">S'incrire</a>
</div>
<div class="buttonSudmiteDiv">
<button class="buttonSudmite">Connexion</button>
</div>
</div>
</body>
</html>

@ -0,0 +1,44 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="../styles/styleSignin.css" media="screen">
<title>Wiki Fantasy : inscription</title>
<link rel="icon" href="./images/Logo.ico">
</head>
<body>
<h1>▶ S'inscrire ◀</h1>
<div class="signin">
<div class="DivId">
<p>Identifiant *</p>
<input type="text" class="champ" id="name" name="name" required/>
</div>
<div class="DivEmail">
<p>Email *</p>
<input type="email" class="champ" id="email" name="email" required/>
</div>
<div class="mdp">
<p>Mot de passe *</p>
<input type="password" class="champ" id="pswd" name="pswd" required/>
</div>
<div class="confmdp">
<p>Confirmer mot de passe *</p>
<input type="password" class="champ" id="confpswd" name="confpswd" required/>
</div>
<div class="imgprof">
<p>Image *</p>
</div>
<div class="confirmer">
<input type="submit" class="btn" value="Inscription" />
</div>
</div>
</body>
</html>

@ -0,0 +1,60 @@
body{
background-color: #120b1d ;
}
h1{
color : white;
font-family: Lemon;
text-align: center;
font-size: 32px;
}
p{
color : white;
font-size: 20px;
font-family: Lemon;
}
.login{
background-color: black;
width: 30%;
margin-left: 33%;
margin-top: 3%;
border-radius: 25px;
padding: 2%;
}
.connexion{
width:90%;
height: 40px;
padding-left: 3%;
margin-left: 1%;
margin-top: -1%;
border-radius: 25px;
border: none;
font-size: 15px;
}
.createAccount{
margin-top: 5%;
margin-bottom: 5%;
font-size: 13px;
text-align: center;
color: white;
}
.buttonSudmiteDiv{
text-align: center;
}
.buttonSudmite{
background: linear-gradient(90deg, #6100ff 0%, #1b0048 100%);
border: none;
color: white;
padding: 2%;
border-radius: 25px;
width: 75%;
font-size: 20px;
}

@ -0,0 +1,80 @@
body{
background-color: #120b1d ;
font-family: Lemon;
}
h1{
color : white;
text-align: center;
}
.signin{
background-color: #000000;
border-radius: 25px;
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: repeat(5, 1fr);
width : 30%;
margin-left: 33%;
margin-top: 3%;
padding : 2%;
}
p{
color :white;
font-size: 20px;
margin-top: 7%;
font-weight: bold;
}
.DivId{
grid-area: 1 / 1 / 2 / 2;
}
.DivEmail{
grid-area: 2 / 1 / 3 / 2;
}
.mdp{
grid-area: 3 / 1 / 4 / 3;
}
.confmdp{
grid-area: 4 / 1 / 5 / 3;
}
.imgprof{
grid-area: 1 / 2 / 3 / 3;
}
.confirmer{
grid-area: 5 / 1 / 6 / 3;
align-self: center;
text-align: center;
}
.champ{
width: 90%;
height : 35%;
border-radius: 25px;
margin-left: 1%;
padding-left: 3%;
margin-top: -1%;
border: none;
font-size: 15px;
}
.btn{
background: linear-gradient(90deg, #6100ff 0%, #1b0048 100%);
margin-top: 10%;
width:75%;
font-size: 20px;
padding: 2%;
border-radius: 25px;
color : white;
border: none;
}
Loading…
Cancel
Save