diff --git a/resources/views/settings/import/home.blade.php b/resources/views/settings/import/home.blade.php new file mode 100644 index 00000000..8d362e4d --- /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 00000000..2d1458f5 --- /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 00000000..60ae2bb5 --- /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 00000000..d560c927 --- /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 00000000..b322d420 --- /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 00000000..44f75255 --- /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 00000000..39e155a1 --- /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