finition css

This commit is contained in:
2024-06-18 19:59:50 +02:00
parent 0b4dde90ac
commit 24fa946cf0
7 changed files with 133 additions and 112 deletions

View File

@@ -1,9 +1,6 @@
<form method="post">
<!-- Grid -->
<div class="grid">
<!-- Markup example 1: input is inside label -->
<label for="prenom">
Prénom
<input type="text" id="prenom" name="prenom" placeholder="Prénom" required>
@@ -14,7 +11,6 @@
<input type="text" id="nom" name="nom" placeholder="nom" required>
</label>
</div>
<!-- Markup example 2: input is after label -->
<label for="email">Adresse mail</label>
<input type="email" id="email" name="email" placeholder="Email" required>
<div class="grid">
@@ -24,9 +20,13 @@
<label for="cpassword">Confirmation password
<input type="password" id="cpassword" name="cpassword" placeholder="Password" required>
</label>
</div>
<!-- Button -->
<?php if ($this->session->flashdata('error')): ?>
<div class="alert-danger">
<?php echo $this->session->flashdata('error'); ?>
</div>
<?php endif; ?>
<br>
<br>
<button type="submit">Submit</button>
</form>