mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-06 06:44:50 +00:00
88 lines
2.5 KiB
PHP
88 lines
2.5 KiB
PHP
@extends('layouts.blank')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="row justify-content-center align-items-center">
|
|
<div class="col-12 col-md-7">
|
|
<div class="logo">
|
|
<img src="/img/pixelfed-icon-color.svg" width="40" height="40" alt="Pixelfed Logo">
|
|
<p class="font-weight-bold mb-0">Pixelfed</p>
|
|
</div>
|
|
|
|
@include('auth.curated-register.partials.progress-bar', ['step' => 3])
|
|
|
|
<div class="alert alert-muted bg-transparent border-muted p-4 text-center mt-5">
|
|
<p class="text-center text-success mb-4"><i class="far fa-envelope-open fa-4x"></i></p>
|
|
<p class="h2 font-weight-bold text-white">Please check your email inbox</p>
|
|
<hr style="opacity: 0.2">
|
|
<p class="lead text-white">We sent a confirmation link to your email that you need to verify before we can process your registration application.</p>
|
|
<p class="text-muted mb-0">The verification link expires after 24 hours.</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-md-7 mt-5">
|
|
<div class="small-links">
|
|
<a href="/">Home</a>
|
|
<span>·</span>
|
|
<a href="/login">Login</a>
|
|
<span>·</span>
|
|
<a href="{{route('help.curated-onboarding')}}" target="_blank">Help</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@push('styles')
|
|
<link href="{{ mix('css/landing.css') }}" rel="stylesheet">
|
|
<style type="text/css">
|
|
.gap-1 {
|
|
gap: 1rem;
|
|
}
|
|
|
|
.opacity-5 {
|
|
opacity: .5;
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
margin-top: 50px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
|
|
p {
|
|
font-size: 30px;
|
|
}
|
|
}
|
|
|
|
.action-btns {
|
|
display: flex;
|
|
margin: 3rem auto 1rem auto;
|
|
flex-direction: row;
|
|
gap: 1rem;
|
|
|
|
form {
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
.small-links {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
margin-bottom: 5rem;
|
|
gap: 1rem;
|
|
|
|
a {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
font-size: 12px;
|
|
}
|
|
|
|
span {
|
|
color: rgba(255, 255, 255, 0.4);
|
|
}
|
|
}
|
|
</style>
|
|
@endpush
|