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