Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontend
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
idatt2106-2024-07
frontend
Commits
33945c89
Commit
33945c89
authored
1 year ago
by
Anders Høvik
Browse files
Options
Downloads
Patches
Plain Diff
finished main layout of the updateUserSettings
parent
cf1bcb0e
No related branches found
Branches containing commit
No related tags found
1 merge request
!30
Feature/update user settings layout
Pipeline
#274960
failed
1 year ago
Stage: install_dependencies
Stage: lint
Stage: build_project
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/components/UpdateUserComponents/UpdateUserLayout.vue
+61
-5
61 additions, 5 deletions
src/components/UpdateUserComponents/UpdateUserLayout.vue
with
61 additions
and
5 deletions
src/components/UpdateUserComponents/UpdateUserLayout.vue
+
61
−
5
View file @
33945c89
...
@@ -3,18 +3,74 @@
...
@@ -3,18 +3,74 @@
</
script
>
</
script
>
<
template
>
<
template
>
<div
class=
"container text-center"
>
<div
class=
"container"
>
<!-- The userprofile and the form that will update name, email, password -->
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col"
>
User profile
</div>
<div
class=
"col-md-2 text-center"
>
<div
class=
"col"
>
update user form
</div>
<img
src=
"/src/assets/userprofile.png"
class=
"img-fluid"
>
<p
class=
"h2"
>
Username
</p>
</div>
<div
class=
"col-md-10"
>
<form>
<div
class=
"row"
>
<div
class=
"form-group col-md-6"
>
<label
for=
"inputEmail4"
>
First Name
</label>
<input
type=
"text"
class=
"form-control"
id=
"inputFirstName"
placeholder=
"ex: Brian"
>
</div>
<div
class=
"form-group col-md-6"
>
<label
for=
"inputPassword4"
>
Last Name
</label>
<input
type=
"text"
class=
"form-control"
id=
"inputLastName"
placeholder=
"ex: Cox"
>
</div>
</div>
<div
class=
"form-group col-md-6"
>
<label
for=
"inputAddress"
>
Email
</label>
<input
type=
"email"
class=
"form-control"
id=
"inputMail"
placeholder=
"ex: briancox@mail.com"
>
</div>
<div
class=
"row"
>
<div
class=
"form-group col-md-6"
>
<label
for=
"inputEmail4"
>
Password
</label>
<input
type=
"password"
class=
"form-control"
id=
"inputPassword"
placeholder=
"Password with capital letter, number and a special character"
>
</div>
<div
class=
"form-group col-md-6"
>
<label
for=
"inputPassword4"
>
Confirmed Password
</label>
<input
type=
"password"
class=
"form-control"
id=
"inputPasswordConfirmed"
placeholder=
"Repeat password"
>
</div>
</div>
<button
type=
"submit"
class=
"btn btn-primary"
>
Change settings
</button>
</form>
</div>
</div>
</div>
<!-- Maybe a profile-pictures here that collapses or not -->
<!-- Maybe a profile-pictures here that collapses or not -->
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col"
>
User profile pictures
</div>
<div
class=
"col"
>
<p>
<a
class=
"btn"
data-bs-toggle=
"collapse"
href=
"#collapseExample"
role=
"button"
aria-expanded=
"false"
aria-controls=
"collapseExample"
>
Profile Pictures
</a>
</p>
</div>
</div>
<div
class=
"row"
>
<div
class=
"collapse"
id=
"collapseExample"
>
<div
class=
"card card-body"
>
This is the content of the user profile
</div>
</div>
</div>
</div>
<!-- Div that contains the configuration -->
<!-- Div that contains the configuration -->
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col"
>
Configuration
</div>
<div
class=
"col"
><p>
<a
class=
"btn"
data-bs-toggle=
"collapse"
href=
"#collapseConfiguration"
role=
"button"
aria-expanded=
"false"
aria-controls=
"collapseConfiguration"
>
User Configuration
</a>
</p></div>
</div>
<div
class=
"row"
>
<div
class=
"collapse"
id=
"collapseConfiguration"
>
<div
class=
"card card-body"
>
This is the configuration of the user configuration
</div>
</div>
</div>
</div>
</div>
</div>
...
...
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