1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-19 23:21:47 +02:00
polr/resources/views/reset_password.blade.php

24 lines
778 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 action="#" 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