-
Notifications
You must be signed in to change notification settings - Fork 1
/
signUp.php
23 lines (20 loc) · 1001 Bytes
/
signUp.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
require_once 'layout/header.php';
?>
<h2 class="text-center my-5">Sign up and get your library</h2>
<hr class="w-50 mx-auto">
<section class="container my-5 border rounded-3 signUp">
<div class="row">
<form class="d-flex flex-column align-items-center justify-content-center gap-3" action="signUp_process.php" method="post">
<input class="rounded-1 col-md-4 form-control" type="text" name="pseudo" placeholder="Your pseudo">
<input class="rounded-1 col-md-4 form-control" type="password" name="pass" placeholder="Your password">
<input class="rounded-1 col-md-4 form-control" type="text" name="token_users" placeholder="Your token">
<button type="submit" class="btn btn-dark px-4">Subscription</button>
</form>
</div>
<div class="d-flex justify-content-end">
<a href="login.php"><button type="button" class="btn btn-dark px-5">Login</button></a>
</div>
</section>
<?php
require_once 'layout/footer.php';