travail en colab avec alexis et nicolas sur un partage
This commit is contained in:
parent
4f3635529d
commit
69593daeec
@ -76,3 +76,16 @@
|
|||||||
line-height: 135%;
|
line-height: 135%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.content_cours {
|
||||||
|
width: 400px;
|
||||||
|
height: 400px;
|
||||||
|
margin: 100px auto ; /* Augmenter la marge en haut à 100px */
|
||||||
|
padding: 40px;
|
||||||
|
background-color: #f2f2f2;
|
||||||
|
border: 5px solid #ccc;
|
||||||
|
border-radius: 90px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 130%;
|
||||||
|
}
|
@ -53,7 +53,6 @@ if (!empty($_REQUEST['login']) && !empty($_REQUEST['password'])) {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content_cours">
|
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
<nav>
|
<nav>
|
||||||
@ -61,16 +60,16 @@ if (!empty($_REQUEST['login']) && !empty($_REQUEST['password'])) {
|
|||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<div class="content_cours">
|
||||||
<h2>Connexion</h2><br>
|
|
||||||
|
<h2>Connexion</h2><br>
|
||||||
|
|
||||||
<form action="" method="post">
|
<form action="" method="post">
|
||||||
<label for="login">Login :</label><br>
|
<label for="login">Login :</label><br>
|
||||||
<input type="text" id="login" name="login" required value="<?php if (isset($_REQUEST['login'])) { echo $_REQUEST['login']; } ?>"><br>
|
<input type="text" id="login" name="login" required value="<?php if (isset($_REQUEST['login'])) { echo $_REQUEST['login']; } ?>"><br>
|
||||||
<label for="password">Mot de passe :</label><br>
|
<br><label for="password">Mot de passe :</label><br>
|
||||||
<input type="password" id="password" name="password" required placeholder="••••••••" value="<?php if (isset($_REQUEST['login'])) { echo $_REQUEST['login']; } ?>"><br>
|
<input type="password" id="password" name="password" required placeholder="••••••••" value="<?php if (isset($_REQUEST['login'])) { echo $_REQUEST['login']; } ?>"><br>
|
||||||
|
<br><input type="submit" value="Se connecter">
|
||||||
<input type="submit" value="Se connecter">
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -48,7 +48,6 @@ if (!empty($_REQUEST['login']) && !empty($_REQUEST['password'])) {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content_cours">
|
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
<nav>
|
<nav>
|
||||||
@ -56,15 +55,17 @@ if (!empty($_REQUEST['login']) && !empty($_REQUEST['password'])) {
|
|||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
<div class="content_cours">
|
||||||
<h2>Inscription</h2> <br>
|
|
||||||
|
|
||||||
|
<h2>Inscription</h2> <br>
|
||||||
|
|
||||||
<form action="" method="post">
|
<form action="" method="post">
|
||||||
<label for="login">Login :</label><br>
|
<label for="login">Login :</label><br>
|
||||||
<input type="text" id="login" name="login" value="<?php if (isset($_REQUEST['login'])) { echo $_REQUEST['login']; } ?>"><br>
|
<input type="text" id="login" name="login" value="<?php if (isset($_REQUEST['login'])) { echo $_REQUEST['login']; } ?>"><br>
|
||||||
<label for="password">Mot de passe :</label><br>
|
<br><label for="password">Mot de passe :</label><br>
|
||||||
<input type="password" id="password" name="password" required placeholder="••••••••" value="<?php if (isset($_REQUEST['login'])) { echo $_REQUEST['login']; } ?>"><br>
|
<input type="password" id="password" name="password" required placeholder="••••••••" value="<?php if (isset($_REQUEST['login'])) { echo $_REQUEST['login']; } ?>"><br>
|
||||||
<label for="role">Role:</label>
|
<br><label for="role">Role :</label>
|
||||||
<select id="role" name="role" required>
|
<select id="role" name="role" required>
|
||||||
<option value="spectator">Spectator</option>
|
<option value="spectator">Spectator</option>
|
||||||
<option value="athlete">Athlete</option>
|
<option value="athlete">Athlete</option>
|
||||||
|
Loading…
Reference in New Issue
Block a user