From ea88fd60b3176638995d47fc049cc4dce0d7a590 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 9 Sep 2018 14:21:20 -0600 Subject: [PATCH] Add sudo auth view --- resources/views/auth/sudo.blade.php | 49 +++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 resources/views/auth/sudo.blade.php diff --git a/resources/views/auth/sudo.blade.php b/resources/views/auth/sudo.blade.php new file mode 100644 index 00000000..79f2917c --- /dev/null +++ b/resources/views/auth/sudo.blade.php @@ -0,0 +1,49 @@ +@extends('layouts.blank') + +@section('content') +
+
+
+
+ +

Confirm password to continue

+
+
+
+
+ @csrf + +
+ +
+ + + @if ($errors->has('password')) + + {{ $errors->first('password') }} + + @endif +
+
+ + @if(config('pixelfed.recaptcha')) +
+ {!! Recaptcha::render() !!} +
+ @endif + +
+
+ + +
+
+
+
+
+
+
+
+@endsection