mirror of
https://github.com/cydrobolt/polr.git
synced 2024-11-10 04:02:28 +01:00
18 lines
545 B
PHP
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
|