Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sample_app
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mai Hoang Thai Ha
sample_app
Commits
76ba878d
Commit
76ba878d
authored
Jun 09, 2021
by
Mai Hoang Thai Ha
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Finish user signup
parent
fc63dcfc
Pipeline
#1237
failed with stages
in 0 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
app/views/layouts/application.html.erb
+4
-0
config/routes.rb
+1
-0
No files found.
app/views/layouts/application.html.erb
View file @
76ba878d
...
@@ -14,8 +14,12 @@
...
@@ -14,8 +14,12 @@
<body>
<body>
<%=
render
'layouts/header'
%>
<%=
render
'layouts/header'
%>
<div
class=
"container"
>
<div
class=
"container"
>
<%
flash
.
each
do
|
message_type
,
message
|
%>
<div
class=
"alert alert-
<%=
message_type
%>
"
>
<%=
message
%>
</div>
<%
end
%>
<%=
yield
%>
<%=
yield
%>
<%=
render
'layouts/footer'
%>
<%=
render
'layouts/footer'
%>
<%=
debug
(
params
)
if
Rails
.
env
.
development?
%>
</div>
</div>
</body>
</body>
</html>
</html>
...
...
config/routes.rb
View file @
76ba878d
...
@@ -5,4 +5,5 @@ Rails.application.routes.draw do
...
@@ -5,4 +5,5 @@ Rails.application.routes.draw do
get
'/about'
,
to:
'static_pages#about'
get
'/about'
,
to:
'static_pages#about'
get
'/contact'
,
to:
'static_pages#contact'
get
'/contact'
,
to:
'static_pages#contact'
get
'/signup'
,
to:
'users#new'
get
'/signup'
,
to:
'users#new'
resources
:users
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment