mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Add user settings view
This commit is contained in:
parent
e94d9534b1
commit
22b779c828
2 changed files with 85 additions and 0 deletions
5
resources/lang/en/profile.php
Normal file
5
resources/lang/en/profile.php
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
'emptyTimeline' => 'This user has no posts yet!',
|
||||||
|
];
|
80
resources/views/settings/home.blade.php
Normal file
80
resources/views/settings/home.blade.php
Normal file
|
@ -0,0 +1,80 @@
|
||||||
|
@extends('settings.template')
|
||||||
|
|
||||||
|
@section('section')
|
||||||
|
|
||||||
|
<div class="title">
|
||||||
|
<h3 class="font-weight-bold">Account Settings</h3>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
<form method="post">
|
||||||
|
@csrf
|
||||||
|
<div class="form-group row">
|
||||||
|
<label for="name" class="col-sm-3 col-form-label font-weight-bold">Name</label>
|
||||||
|
<div class="col-sm-9">
|
||||||
|
<input type="text" class="form-control" id="name" name="name" placeholder="Your Name" value="{{Auth::user()->profile->name}}">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group row">
|
||||||
|
<label for="name" class="col-sm-3 col-form-label font-weight-bold">Username</label>
|
||||||
|
<div class="col-sm-9">
|
||||||
|
<input type="text" class="form-control" id="name" name="username" placeholder="Username" value="{{Auth::user()->profile->username}}" readonly>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group row">
|
||||||
|
<label for="email" class="col-sm-3 col-form-label font-weight-bold">Email</label>
|
||||||
|
<div class="col-sm-9">
|
||||||
|
<input type="email" class="form-control" id="email" name="email" placeholder="Email Address" value="{{Auth::user()->email}}" readonly>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{--<div class="form-group row">
|
||||||
|
<label for="inputPassword3" class="col-sm-3 col-form-label">Password</label>
|
||||||
|
<div class="col-sm-9">
|
||||||
|
<input type="password" class="form-control" id="inputPassword3" placeholder="Password">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
<fieldset class="form-group">
|
||||||
|
<div class="row">
|
||||||
|
<legend class="col-form-label col-sm-3 pt-0">Radios</legend>
|
||||||
|
<div class="col-sm-9">
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" type="radio" name="gridRadios" id="gridRadios1" value="option1" checked>
|
||||||
|
<label class="form-check-label" for="gridRadios1">
|
||||||
|
First radio
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" type="radio" name="gridRadios" id="gridRadios2" value="option2">
|
||||||
|
<label class="form-check-label" for="gridRadios2">
|
||||||
|
Second radio
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<div class="form-check disabled">
|
||||||
|
<input class="form-check-input" type="radio" name="gridRadios" id="gridRadios3" value="option3" disabled>
|
||||||
|
<label class="form-check-label" for="gridRadios3">
|
||||||
|
Third disabled radio
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
|
<div class="form-group row">
|
||||||
|
<div class="col-sm-3">Checkbox</div>
|
||||||
|
<div class="col-sm-9">
|
||||||
|
<div class="form-check">
|
||||||
|
<input class="form-check-input" type="checkbox" id="gridCheck1">
|
||||||
|
<label class="form-check-label" for="gridCheck1">
|
||||||
|
Example checkbox
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>--}}
|
||||||
|
<hr>
|
||||||
|
<div class="form-group row">
|
||||||
|
<div class="col-sm-9">
|
||||||
|
<button type="submit" class="btn btn-primary">Submit</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
@endsection
|
Loading…
Reference in a new issue