Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Hiboo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ACIDES
Hiboo
Commits
7c6e628d
Commit
7c6e628d
authored
4 years ago
by
Jae
Browse files
Options
Downloads
Patches
Plain Diff
Stringify
parent
c2be0ac0
No related branches found
No related tags found
1 merge request
!20
Add 'remember me' button
Pipeline
#1967
passed
4 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hiboo/account/forms.py
+1
-1
1 addition, 1 deletion
hiboo/account/forms.py
with
1 addition
and
1 deletion
hiboo/account/forms.py
+
1
−
1
View file @
7c6e628d
...
...
@@ -7,7 +7,7 @@ import flask_wtf
class
LoginForm
(
flask_wtf
.
FlaskForm
):
username
=
fields
.
StringField
(
_
(
'
Username
'
),
[
validators
.
DataRequired
()])
password
=
fields
.
PasswordField
(
_
(
'
Password
'
),
[
validators
.
DataRequired
()])
remember_me
=
fields
.
BooleanField
(
"
Remember me
"
,
default
=
False
)
remember_me
=
fields
.
BooleanField
(
_
(
'
Remember me
'
)
,
default
=
False
)
submit
=
fields
.
SubmitField
(
_
(
'
Sign in
'
))
...
...
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