Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cicer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
meskio
cicer
Merge requests
!7
UI to change your own password
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
UI to change your own password
quique/cicer:password
into
master
Overview
0
Commits
3
Changes
3
Merged
Quique
requested to merge
quique/cicer:password
into
master
4 years ago
Overview
0
Commits
3
Changes
3
Expand
0
0
Merge request reports
Compare
master
version 2
0e999271
4 years ago
version 1
c38d5a64
4 years ago
master (base)
and
latest version
latest version
c3a75c95
3 commits,
4 years ago
version 2
0e999271
2 commits,
4 years ago
version 1
c38d5a64
1 commit,
4 years ago
3 files
+
193
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
src/App.js
+
4
−
0
Options
@@ -3,6 +3,7 @@ import { BrowserRouter, Switch, Route } from "react-router-dom";
import
MemberList
from
"
./MemberList
"
;
import
ProductList
from
"
./ProductList
"
;
import
Dashboard
from
"
./Dashboard
"
;
import
OwnPassword
from
"
./Password
"
;
import
Purchase
from
"
./purchase/Purchase
"
;
import
Topup
from
"
./Topup
"
;
import
ShowTransaction
from
"
./ShowTransaction
"
;
@@ -27,6 +28,9 @@ function Panel(props) {
<
Route
path
=
"
/transaction/:id
"
>
<
ShowTransaction
/>
<
/Route
>
<
Route
path
=
"
/password
"
>
<
OwnPassword
/>
<
/Route
>
<
Route
path
=
"
/purchase
"
>
<
Purchase
/>
<
/Route
>
Loading