Usando titulo genérico para login
This commit is contained in:
parent
c0d8392f6e
commit
2075bcab0f
3 changed files with 29 additions and 44 deletions
|
@ -10,12 +10,7 @@
|
|||
<body>
|
||||
<section class="section">
|
||||
<div id="root" class="container">
|
||||
<h1 class="title has-text-white">
|
||||
Administración de Pedidos MPS
|
||||
</h1>
|
||||
<p class="subtitle has-text-white">
|
||||
Bienvenidx a la administración de pedidos del <strong class="has-text-white">Mercado Popular de Subsistencia</strong>
|
||||
</p>
|
||||
<login-titulos></login-titulos>
|
||||
@error('name')
|
||||
<div class="notification is-warning">
|
||||
Contraseña incorrecta, intentalo nuevamente.
|
||||
|
|
|
@ -11,13 +11,8 @@
|
|||
<body>
|
||||
<section class="section">
|
||||
<div id="root" class="container">
|
||||
<h1 class="title">
|
||||
Pedidos MPS
|
||||
</h1>
|
||||
<p class="subtitle">
|
||||
Bienvenidx a la sección de compras de la aplicación del <strong>Mercado Popular de Subsistencia</strong>
|
||||
</p>
|
||||
@error('name')
|
||||
<login-titulos></login-titulos>
|
||||
@error('name')
|
||||
<div class="notification is-danger">
|
||||
Contraseña incorrecta, intentalo nuevamente.
|
||||
</div>
|
||||
|
|
|
@ -1,35 +1,30 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ config('app.name', 'Pedidos del MPS') }}</title>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
|
||||
<link rel="stylesheet" href="{{ mix('css/app.css') }}">
|
||||
<script src="https://kit.fontawesome.com/9235d1c676.js" crossorigin="anonymous"></script>
|
||||
</head>
|
||||
<body>
|
||||
<section class="section">
|
||||
<div id="root" class="container">
|
||||
<admin-boton-login></admin-boton-login>
|
||||
<h1 class="title">
|
||||
Pedidos MPS
|
||||
</h1>
|
||||
<p class="subtitle">
|
||||
Bienvenidx a la aplicación de pedidos del <strong>Mercado Popular de Subsistencia</strong>
|
||||
</p>
|
||||
@error('name')
|
||||
<div class="notification is-danger">
|
||||
Contraseña incorrecta, intentalo nuevamente.
|
||||
</div>
|
||||
@enderror
|
||||
<comunes-region-select></comunes-region-select>
|
||||
<form method="post" action="/login">
|
||||
@csrf
|
||||
<comunes-login-form></comunes-login-form>
|
||||
</form>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ config('app.name', 'Pedidos del MPS') }}</title>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
|
||||
<link rel="stylesheet" href="{{ mix('css/app.css') }}">
|
||||
<script src="https://kit.fontawesome.com/9235d1c676.js" crossorigin="anonymous"></script>
|
||||
</head>
|
||||
<body>
|
||||
<section class="section">
|
||||
<div id="root" class="container">
|
||||
<admin-boton-login></admin-boton-login>
|
||||
<login-titulos></login-titulos>
|
||||
@error('name')
|
||||
<div class="notification is-danger">
|
||||
Contraseña incorrecta, intentalo nuevamente.
|
||||
</div>
|
||||
</section>
|
||||
<script src="{{ mix('js/app.js') }}" defer></script>
|
||||
</body>
|
||||
@enderror
|
||||
<comunes-region-select></comunes-region-select>
|
||||
<form method="post" action="/login">
|
||||
@csrf
|
||||
<comunes-login-form></comunes-login-form>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
<script src="{{ mix('js/app.js') }}" defer></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Reference in a new issue