1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-19 23:21:47 +02:00
polr/resources/views/lost_password.blade.php
2016-05-07 23:01:44 -04:00

18 lines
545 B
PHP

@extends('layouts.base')
@section('css')
<link rel='stylesheet' href='/css/lost_password.css' />
@endsection
@section('content')
<h1 class='header'>Lost Password</h1>
<div class='col-md-6 col-md-offset-3'>
<form action='/lost_password' method='POST'>
<input type='email' name='email' placeholder='Email' class='form-control email-input-pd'>
<input type="hidden" name='_token' value='{{csrf_token()}}' />
<input type='submit' value='Send a password reset email' class='form-control'>
</form>
</div>
@endsection