Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HydroMinderApp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
cs21-32
HydroMinderApp
Commits
c816234d
Commit
c816234d
authored
3 years ago
by
Myśliwiec, D. (Dominik, Student M-CS)
Browse files
Options
Downloads
Patches
Plain Diff
Create change password page
parent
66567a62
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pages/Change-Password.vue
+45
-10
45 additions, 10 deletions
pages/Change-Password.vue
with
45 additions
and
10 deletions
pages/Change-Password.vue
+
45
−
10
View file @
c816234d
<
template
>
<div
class=
"container"
>
<label
for=
"old-password"
>
Old password
</label>
<input
id=
"old-password"
type=
"text"
>
<label
for=
"new-password"
>
New password
</label>
<input
id=
"new-password"
type=
"text"
>
<label
for=
"repeat-password"
>
Repeat new password
</label>
<input
id=
"repeat-password"
type=
"text"
>
</div>
<section
class=
"password-section"
>
<div
class=
"container"
>
<NuxtLink
to=
"/"
class=
"link-back"
>
Change password
</NuxtLink>
<label
for=
"old-password"
>
Old password
</label>
<input
id=
"old-password"
type=
"password"
>
<label
for=
"new-password"
>
New password
</label>
<input
id=
"new-password"
type=
"password"
>
<label
for=
"repeat-password"
>
Repeat new password
</label>
<input
id=
"repeat-password"
type=
"password"
>
<button
class=
"button"
>
confirm
</button>
</div>
</section>
</
template
>
<
script
>
export
default
{
layout
:
'
settingLayout
'
}
</
script
>
<
style
scoped
>
<
style
lang=
"scss"
scoped
>
.password-section
{
width
:
auto
;
display
:
flex
;
flex-direction
:
column
;
align-items
:
center
;
text-shadow
:
0
4px
7px
#333
;
input
{
font-size
:
1
.2rem
;
border
:
.5vh
solid
white
;
border-radius
:
3
.5vh
;
box-shadow
:
0
5px
7px
rgba
(
0
,
0
,
0
,
.4
)
inset
,
0
3px
5px
#555
;
padding
:
.2vh
1
.5vh
.2vh
1
.5vh
;
background
:
transparent
;
color
:
#004377
;
width
:
min
(
300px
,
75vw
);
}
label
{
width
:
min
(
270px
,
66vw
);
font-size
:
1rem
;
margin-top
:
6%
;
text-align
:
left
;
}
button
{
width
:
min
(
300px
,
75vw
);
height
:
39px
;
margin-top
:
10vh
;
}
}
</
style
>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment