Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
Flask_User_Reg
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
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
Mitchell Moore
Flask_User_Reg
Merge requests
!19
Feat check account existence
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feat check account existence
feat-check-account-existence
into
master
Overview
0
Commits
5
Pipelines
0
Changes
5
Merged
Mitchell Moore
requested to merge
feat-check-account-existence
into
master
5 years ago
Overview
0
Commits
5
Pipelines
0
Changes
3
Expand
Handle and display account creation error if relevant
👍
0
👎
0
Merge request reports
Viewing commit
f5e1ca5f
Prev
Next
Show latest version
3 files
+
23
−
24
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
f5e1ca5f
complete error check
· f5e1ca5f
Mitchell Moore
authored
5 years ago
app/templates/auth/SignUp.html
+
15
−
7
Options
@@ -38,6 +38,7 @@
</nav>
</header>
<div
class=
"container content"
role=
"main"
style=
"
width: 800;
"
>
@@ -50,13 +51,24 @@
<form
action=
"."
method=
"post"
>
<div
class=
"signUpContainer"
>
<label
for=
"name"
><b>
Full Name:
<br></b></label>
<input
class=
"form-control"
type=
"text"
placeholder=
"Enter Full Name"
name=
"name"
>
<input
class=
"form-control"
type=
"text"
placeholder=
"Enter Full Name"
name=
"name"
required
>
<input
class=
"btn btn-primary btn-block"
type=
"submit"
value=
"submit"
>
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
<div>
<strong
style=
"color: #be051b; text-align: center;"
>
{{ message }}
</strong>
</div>
{% endfor %}
{% endif %}
{% endwith %}
</div>
</form>
</div>
</div>
</body>
<footer>
<div
class=
"container-fluid"
>
@@ -69,8 +81,4 @@
</div>
</div>
<!-- /.container -->
</footer>
</body></html>
</html>
Loading