浏览代码

Add follow intent view

Daniel Supernault 5 年之前
父节点
当前提交
e9c67e337d
共有 1 个文件被更改,包括 53 次插入0 次删除
  1. 53 0
      resources/views/site/intents/follow.blade.php

+ 53 - 0
resources/views/site/intents/follow.blade.php

@@ -0,0 +1,53 @@
+@extends('layouts.blank')
+
+@section('content')
+<div class="container">
+	<div class="row">
+		<div class="col-12 col-md-6 offset-md-3 pt-5">
+			<p class="h3 text-center font-weight-lighter py-3 mb-4 text-secondary">Follow <span class="text-dark">{{$profile->username}}</span> on Pixelfed</p>
+			<div class="card">
+				<div class="card-header p-0 m-0">
+					<div style="width: 100%;height: 140px;background: #0070b7"></div>
+				</div>
+				<div class="card-body">
+					<div class="text-center mt-n5 mb-4">
+						<img class="rounded-circle p-1 border mt-n4 bg-white shadow" src="{{$profile->avatarUrl()}}" width="90px" height="90px;">
+					</div>
+					<p class="text-center lead font-weight-bold mb-1">{{$profile->username}}</p>
+					<p class="text-center text-muted small text-uppercase mb-4">{{$profile->followers->count()}} followers</p>
+					<div class="d-flex justify-content-center">
+					@if($following == true)
+						<form class="d-inline-block" action="/i/follow" method="post">
+							@csrf
+							<input type="hidden" name="item" value="{{(string)$profile->id}}">
+							<input type="hidden" name="force" value="0">
+							<button type="submit" class="btn btn-outline-secondary btn-sm py-1 px-4 text-uppercase font-weight-bold mr-3" style="font-weight: 500">Unfollow</button>
+						</form>
+					@else
+						<form class="d-inline-block" action="/i/follow" method="post">
+							@csrf
+							<input type="hidden" name="item" value="{{(string)$profile->id}}">
+							<input type="hidden" name="force" value="0">
+							<button type="submit" class="btn btn-primary btn-sm py-1 px-4 text-uppercase font-weight-bold mr-3" style="font-weight: 500">Follow</button>
+						</form>
+					@endif
+						<a class="btn btn-outline-primary btn-sm py-1 px-4 text-uppercase font-weight-bold" href="{{$profile->url()}}" style="font-weight: 500">View Profile</a>
+					</div>
+				</div>
+			</div>
+			@auth
+			<div class="d-flex justify-content-between pt-4 small">
+				<a class="text-lighter text-decoration-none" href="/{{$user->username}}">Logged in as: <span class="font-weight-bold text-muted">{{$user->username}}</span></a>
+				<span>
+					<a class="text-decoration-none text-muted font-weight-bold mr-3" href="/site/help">Help</a>
+					<a class="text-decoration-none text-muted font-weight-bold" href="{{ route('logout') }}" onclick="event.preventDefault();document.getElementById('logout-form').submit();">Logout</a>
+					<form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;">
+						@csrf
+					</form>
+				</span>
+			</div>
+			@endauth
+		</div>
+	</div>
+</div>
+@endsection