Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Castopod
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ad Aures
Castopod
Compare revisions
ba088649d2f429d39c867a5e72961a2b67f8c0fc to develop
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
adaures/castopod
Select target project
No results found
develop
Select Git revision
Swap
Target
spaetz/castopod-host
Select target project
adaures/castopod
mkljczk/castopod-host
spaetz/castopod-host
PatrykMis/castopod
jonas/castopod
ajeremias/castopod
misuzu/castopod
KrzysztofDomanczyk/castopod
Behel/castopod
nebulon/castopod
ewen/castopod
NeoluxConsulting/castopod
nateritter/castopod-og
prcutler/castopod
14 results
ba088649d2f429d39c867a5e72961a2b67f8c0fc
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/Views/admin/my_account/change_password.php
+0
-47
0 additions, 47 deletions
app/Views/admin/my_account/change_password.php
with
0 additions
and
47 deletions
Some changes are not shown.
For a faster browsing experience, only
1 of 681+
files are shown.
app/Views/admin/my_account/change_password.php
deleted
100644 → 0
View file @
ba088649
<?=
$this
->
extend
(
'admin/_layout'
)
?>
<?=
$this
->
section
(
'title'
)
?>
<?=
lang
(
'MyAccount.changePassword'
)
?>
<?=
$this
->
endSection
()
?>
<?=
$this
->
section
(
'pageTitle'
)
?>
<?=
lang
(
'MyAccount.changePassword'
)
?>
<?=
$this
->
endSection
()
?>
<?=
$this
->
section
(
'content'
)
?>
<?=
form_open
(
route_to
(
'change-password'
),
[
'class'
=>
'flex flex-col max-w-sm'
,
])
?>
<?=
csrf_field
()
?>
<?=
form_label
(
lang
(
'User.form.password'
),
'password'
)
?>
<?=
form_input
([
'id'
=>
'password'
,
'name'
=>
'password'
,
'class'
=>
'form-input mb-4'
,
'required'
=>
'required'
,
'type'
=>
'password'
,
])
?>
<?=
form_label
(
lang
(
'User.form.new_password'
),
'new_password'
)
?>
<?=
form_input
([
'id'
=>
'new_password'
,
'name'
=>
'new_password'
,
'class'
=>
'form-input mb-4'
,
'required'
=>
'required'
,
'type'
=>
'password'
,
'autocomplete'
=>
'new-password'
,
])
?>
<?=
button
(
lang
(
'User.form.submit_password_change'
),
null
,
[
'variant'
=>
'primary'
],
[
'type'
=>
'submit'
,
'class'
=>
'self-end'
]
)
?>
<?=
form_close
()
?>
<?=
$this
->
endSection
()
?>
This diff is collapsed.
Click to expand it.
Prev
1
…
31
32
33
34
35
Next