From e9c67e337d37c3f8b6d746affa952b7c5adb48b8 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Wed, 4 Dec 2019 20:22:37 -0700 Subject: [PATCH] Add follow intent view --- resources/views/site/intents/follow.blade.php | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 resources/views/site/intents/follow.blade.php diff --git a/resources/views/site/intents/follow.blade.php b/resources/views/site/intents/follow.blade.php new file mode 100644 index 000000000..6b474e06e --- /dev/null +++ b/resources/views/site/intents/follow.blade.php @@ -0,0 +1,53 @@ +@extends('layouts.blank') + +@section('content') +
+
+
+

Follow {{$profile->username}} on Pixelfed

+
+
+
+
+
+
+ +
+

{{$profile->username}}

+

{{$profile->followers->count()}} followers

+
+ @if($following == true) +
+ @csrf + + + +
+ @else +
+ @csrf + + + +
+ @endif + View Profile +
+
+
+ @auth + + @endauth +
+
+
+@endsection \ No newline at end of file