1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-20 07:31:53 +02:00
polr/resources/views/login.blade.php

25 lines
889 B
PHP
Raw Normal View History

@extends('layouts.base')
@section('css')
<link rel='stylesheet' href='css/login.css' />
@endsection
@section('content')
<div class="center-text">
<h1>Login</h1><br/><br/>
<div class="col-md-3"></div>
<div class="col-md-6">
<form action="login" method="POST">
<input type="text" placeholder="username" name="username" class="form-control login-field" />
<input type="password" placeholder="password" name="password" class="form-control login-field" />
<input type="hidden" name='_token' value='{{csrf_token()}}' />
<input type="submit" value="Login" class="login-submit btn btn-success" />
<p class='signup-prompt'>
<small>Don't have an account? <a href='{{route('signup')}}'>Register</a></small>
</p>
</form>
</div>
<div class="col-md-3"></div>
</div
@endsection