forked from pterodactyl/panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword.blade.php
More file actions
38 lines (33 loc) · 1.17 KB
/
password.blade.php
File metadata and controls
38 lines (33 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
@extends('layouts.master')
@section('title', 'Reset Password')
@section('right-nav')
@endsection
@section('sidebar')
@endsection
@section('content')
<div class="col-md-8">
<form action="/auth/password" method="POST">
<legend>{{ trans('auth.resetpassword') }}</legend>
<fieldset>
@if (session('status'))
<div class="alert alert-success">
<strong>{{ trans('strings.success') }}!</strong> {{ trans('auth.emailsent') }}
</div>
@endif
<div class="form-group">
<label for="email" class="control-label">{{ trans('strings.email') }}</label>
<div>
<input type="text" class="form-control" name="email" id="email" value="{{ old('email') }}" placeholder="{{ trans('strings.email') }}" />
</div>
</div>
<div class="form-group">
<div>
{!! csrf_field() !!}
<button class="btn btn-default btn-sm">{{ trans('auth.sendlink') }}</button>
</div>
</div>
</fieldset>
</form>
</div>
<div class="col-md-3"></div>
@endsection