Initial commit
This commit is contained in:
23
views/password/create.blade.php
Normal file
23
views/password/create.blade.php
Normal file
@ -0,0 +1,23 @@
|
||||
@extends('layout.master')
|
||||
|
||||
@section('title')
|
||||
Password Reset -
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<form method="POST" action="">
|
||||
<input type="hidden" name="_token" value="{{ $_SESSION['_token'] }}">
|
||||
<input type="hidden" name="id" value="{{ $_GET['id'] }}">
|
||||
<input type="hidden" name="forget_token" value="{{ $_GET['forget_token'] }}">
|
||||
<div class="form-group">
|
||||
<label for="password">Password</label>
|
||||
<input type="password" name="password" class="form-control" placeholder="Enter password">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="confirm-password">Confirmation</label>
|
||||
<input type="password" name="confirm-password" class="form-control" placeholder="Enter password again">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Reset</button>
|
||||
</form>
|
||||
@endsection
|
||||
|
16
views/password/reset.blade.php
Normal file
16
views/password/reset.blade.php
Normal file
@ -0,0 +1,16 @@
|
||||
@extends('layout.master')
|
||||
|
||||
@section('title')
|
||||
Password Reset -
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<form method="POST" action="">
|
||||
<input type="hidden" name="_token" value="{{ $_SESSION['_token'] }}">
|
||||
<div class="form-group">
|
||||
<label for="email">Email</label>
|
||||
<input type="email" name="email" class="form-control" placeholder="Enter email">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Send</button>
|
||||
</form>
|
||||
@endsection
|
Reference in New Issue
Block a user