signup.php 3.01 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<!DOCTYPE html>
 <html lang="fr">
    <head>
        <?php require_once('head.php'); ?>
    </head>

    <body class="bg-gradient-primary">
        <div class="container">
            <div class="card o-hidden border-0 shadow-lg my-5">
                <div class="card-body p-0">
                    <div class="row">
                        <div class="col-lg-5 d-none d-lg-block bg-register-image"></div>
                        <div class="col-lg-7">
                            <div class="p-5">
                                <div class="text-center">
                                    <h1 class="h4 text-gray-900 mb-4">Créez un compte !</h1>
                                </div>
                                <form class="user">
                                    <div class="form-group row">
                                        <div class="col-sm-6 mb-3 mb-sm-0">
raphael.peim's avatar
raphael.peim committed
21
                                            <input type="text" class="form-control form-control-user" id="firstname" placeholder="Prénom">
22 23
                                        </div>
                                        <div class="col-sm-6">
raphael.peim's avatar
raphael.peim committed
24
                                            <input type="text" class="form-control form-control-user" id="lastname" placeholder="Nom">
25 26 27
                                        </div>
                                    </div>
                                    <div class="form-group">
raphael.peim's avatar
raphael.peim committed
28
                                        <input type="text" class="form-control form-control-user" id="login" placeholder="Login">
29 30 31 32 33 34 35 36 37 38 39 40
                                    </div>
                                    <div class="form-group">
                                        <input type="email" class="form-control form-control-user" id="email" placeholder="Email">
                                    </div>
                                    <div class="form-group row">
                                        <div class="col-sm-6 mb-3 mb-sm-0">
                                            <input type="password" class="form-control form-control-user" id="password" placeholder="Mot de passe">
                                        </div>
                                        <div class="col-sm-6">
                                            <input type="password" class="form-control form-control-user" id="repeatPassword" placeholder="Confirmation">
                                        </div>
                                    </div>
raphael.peim's avatar
raphael.peim committed
41
                                    <button type="submit" class="btn btn-primary btn-user btn-block">Inscription</button>
42 43 44 45 46 47 48 49 50 51 52 53
                                </form>
                                <hr>
                                <div class="text-center">
                                    <a class="small" href="login.php">Déjà inscrit ? Connectez-vous !</a>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>

raphael.peim's avatar
raphael.peim committed
54
        <?php require_once('js.php'); ?>
55 56
    </body>
</html>