finition css
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user