parent
6451b22dc3
commit
b416e774af
@ -0,0 +1,81 @@
|
|||||||
|
@page "/"
|
||||||
|
<h1>▶ Connexion ◀</h1>
|
||||||
|
|
||||||
|
<div class="login">
|
||||||
|
@* <form method="post" action="{{ racine }}/validlogin"> *@
|
||||||
|
<p> <strong>Identifiant *</strong></p>
|
||||||
|
<input type="text" class="connexion" name="pseudo" id="pseudo" placeholder="Entrez votre pseudo" required />
|
||||||
|
|
||||||
|
<p> <strong> Mot de passe *</strong></p>
|
||||||
|
<input type="password" class="connexion" name="mdp" id="mdp" placeholder="Entrez votre mdp" required />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="buttonSubmitDiv">
|
||||||
|
<button class="buttonSudmite">Se Connecter</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
@* </form> *@
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
|
||||||
|
.buttonSubmitDiv {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 32px;
|
||||||
|
margin-top: 10%;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin-top: 6%;
|
||||||
|
margin-bottom: 2%;
|
||||||
|
font-size: 20px;
|
||||||
|
font-family: "Lemon", serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login {
|
||||||
|
width: 35vw;
|
||||||
|
margin-left: 30.5vw;
|
||||||
|
margin-top: 3vh;
|
||||||
|
border-radius: 25px;
|
||||||
|
padding: 2vw;
|
||||||
|
background-color: #cfcfcf;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.buttonSudmite {
|
||||||
|
border: none;
|
||||||
|
padding: 2%;
|
||||||
|
margin-top:5%;
|
||||||
|
border-radius: 25px;
|
||||||
|
width: 50%;
|
||||||
|
font-size: 1.25em;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.connexion {
|
||||||
|
width: 94%;
|
||||||
|
height: 40px;
|
||||||
|
padding-left: 3%;
|
||||||
|
margin-left: 1%;
|
||||||
|
margin-top: -1%;
|
||||||
|
border-radius: 25px;
|
||||||
|
border: none;
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
@code {
|
||||||
|
private void ShowFullSite()
|
||||||
|
{
|
||||||
|
// Code pour afficher l'ensemble du menu
|
||||||
|
// Cela peut être un appel à une méthode ou un service qui change l'état de la visibilité du menu
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue