1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-20 07:31:53 +02:00
polr/resources/views/reset_password.blade.php
2016-05-07 23:01:44 -04:00

24 lines
767 B
PHP

@extends('layouts.base')
@section('css')
<link rel='stylesheet' href='/css/reset_password.css' />
@endsection
@section('content')
<h1 class='header'>Reset Password</h1>
<div class='col-md-6 col-md-offset-3'>
<form method='POST'>
<input type='password' id='passwordFirst' placeholder='New Password' class='form-control password-input-pd'>
<input type='password' id='passwordConfirm' placeholder='Confirm New Password' class='form-control password-input-pd' name='new_password'>
<input type="hidden" name='_token' value='{{csrf_token()}}' />
<input type='submit' id='submitForm' value='Reset Password' class='form-control'>
</form>
</div>
@endsection
@section('js')
<script src='/js/reset_password.js'></script>
@endsection