From d292c3870f05e76d2b095390c96476dccf613a30 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sat, 26 May 2018 16:40:39 -0600 Subject: [PATCH] Add user settings views --- .../views/settings/import/home.blade.php | 30 +++++++++++++ .../views/settings/notifications.blade.php | 13 ++++++ .../views/settings/partial/sidebar.blade.php | 44 +++++++++++++++++++ resources/views/settings/password.blade.php | 38 ++++++++++++++++ resources/views/settings/privacy.blade.php | 13 ++++++ resources/views/settings/security.blade.php | 13 ++++++ resources/views/settings/template.blade.php | 25 +++++++++++ 7 files changed, 176 insertions(+) create mode 100644 resources/views/settings/import/home.blade.php create mode 100644 resources/views/settings/notifications.blade.php create mode 100644 resources/views/settings/partial/sidebar.blade.php create mode 100644 resources/views/settings/password.blade.php create mode 100644 resources/views/settings/privacy.blade.php create mode 100644 resources/views/settings/security.blade.php create mode 100644 resources/views/settings/template.blade.php diff --git a/resources/views/settings/import/home.blade.php b/resources/views/settings/import/home.blade.php new file mode 100644 index 000000000..8d362e4d0 --- /dev/null +++ b/resources/views/settings/import/home.blade.php @@ -0,0 +1,30 @@ +@extends('settings.template') + +@section('section') + +
+

Import

+
+
+
+

Account Import allows you to import your data from a supported service.

+

Importing from another service will not impact existing data by default however you may choose to update avatar, bio or nickname fields during the process.

+
+
+

Supported Services

+

+ Import from Instagram +

+
+

Coming Soon

+

+ Import from Mastodon +

+

+ Import from Pleroma +

+

+ Import from GNU/Social +

+
+@endsection \ No newline at end of file diff --git a/resources/views/settings/notifications.blade.php b/resources/views/settings/notifications.blade.php new file mode 100644 index 000000000..2d1458f5c --- /dev/null +++ b/resources/views/settings/notifications.blade.php @@ -0,0 +1,13 @@ +@extends('settings.template') + +@section('section') + +
+

Notification Settings

+
+
+
+ Coming Soon +
+ +@endsection \ No newline at end of file diff --git a/resources/views/settings/partial/sidebar.blade.php b/resources/views/settings/partial/sidebar.blade.php new file mode 100644 index 000000000..60ae2bb5c --- /dev/null +++ b/resources/views/settings/partial/sidebar.blade.php @@ -0,0 +1,44 @@ +
+ +
\ No newline at end of file diff --git a/resources/views/settings/password.blade.php b/resources/views/settings/password.blade.php new file mode 100644 index 000000000..d560c9272 --- /dev/null +++ b/resources/views/settings/password.blade.php @@ -0,0 +1,38 @@ +@extends('settings.template') + +@section('section') + +
+

Update Password

+
+
+
+ @csrf +
+ +
+ +
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ +
+
+
+ +@endsection \ No newline at end of file diff --git a/resources/views/settings/privacy.blade.php b/resources/views/settings/privacy.blade.php new file mode 100644 index 000000000..b322d4201 --- /dev/null +++ b/resources/views/settings/privacy.blade.php @@ -0,0 +1,13 @@ +@extends('settings.template') + +@section('section') + +
+

Privacy Settings

+
+
+
+ Coming Soon +
+ +@endsection \ No newline at end of file diff --git a/resources/views/settings/security.blade.php b/resources/views/settings/security.blade.php new file mode 100644 index 000000000..44f752557 --- /dev/null +++ b/resources/views/settings/security.blade.php @@ -0,0 +1,13 @@ +@extends('settings.template') + +@section('section') + +
+

Security Settings

+
+
+
+ Coming Soon +
+ +@endsection \ No newline at end of file diff --git a/resources/views/settings/template.blade.php b/resources/views/settings/template.blade.php new file mode 100644 index 000000000..39e155a17 --- /dev/null +++ b/resources/views/settings/template.blade.php @@ -0,0 +1,25 @@ +@extends('layouts.app') + +@section('content') + +
+
+
+
+
+ @include('settings.partial.sidebar') +
+ @if (session('status')) +
+ {{ session('status') }} +
+ @endif + @yield('section') +
+
+
+
+
+
+ +@endsection \ No newline at end of file