login.jsp 3.11 KB
Newer Older
1
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
2 3
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html lang="es">
4 5 6 7 8 9
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="description" content="">
    <meta name="author" content="">
    <title>Login</title>
Cesar Giulano Gonzalez Maqueda committed
10
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
11
    <link href="https://getbootstrap.com/docs/4.0/examples/signin/signin.css" rel="stylesheet" crossorigin="anonymous">
12 13
    <link href="/css/style.css" rel="stylesheet" type="text/css"/>
    <link rel="icon" href="/img/LogoRoshka.ico">
14 15
</head>
<body>
Cesar Giulano Gonzalez Maqueda committed
16
<jsp:include page="alerts.jsp"/>
17
<!-- <section class="vh-100" style="background-color: #508bfc;"> -->
18
    <div class="container h-100">
19
        <div class="row d-flex justify-content-center align-items-center h-10">
20 21 22 23 24
            <div class="col-12 col-md-8 col-lg-6 col-xl-5">
                <div class="card shadow-2-strong" style="border-radius: 1rem;">
                    <div class="card-body p-5 text-center">

                        <form:form method="post" action="/login">
willgonzz committed
25
                            <h3>Ingresar</h3>
26 27
                            <div>
                                <img src="/img/LogoRoshka.ico" class="rounded img-fluid" id="image" style="width:auto;height:auto;" alt=""/>
28
                            </div>
29 30 31 32 33 34 35 36 37 38 39
                            <div class="form-outline mb-4">
                                <input type="email" id="typeEmailX-2" class="form-control form-control-lg" name="email" placeholder="example@example.com"/>
                                <label class="form-label" for="typeEmailX-2">Email</label>
                            </div>

                            <div class="form-outline mb-4">
                                <input type="password" id="typePasswordX-2" class="form-control form-control-lg" name="password" />
                                <label class="form-label" for="typePasswordX-2">Password</label>
                            </div>


40
                            <button class="btn btn-primary btn-lg btn-block" type="submit">Ingresar</button>
41 42 43
                        </form:form>

                        <hr class="my-4">
44
                        <div class="row">
45
                            <a href="/forgot-password">Olvidaste tu contraseña?</a>
46
                        </div>
47
                        <div class="row">
48
                            <a href="/register">Regístrate !</a>
49
                        </div>
50 51 52 53 54 55
                    </div>
                </div>
            </div>
        </div>
    </div>
</section>
Cesar Giulano Gonzalez Maqueda committed
56
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
57
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
58 59 60
</body>
</html>