Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
desd
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
kj2-drupisz
desd
Commits
8ddbf0ef
Commit
8ddbf0ef
authored
1 year ago
by
James Smith
Browse files
Options
Downloads
Patches
Plain Diff
added break tags to make front end slightly cleaner until widgets are implemented
parent
1a20adcf
No related branches found
No related tags found
1 merge request
!17
changed entrypoint port to new port. Added forms.py for custom...
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
myproject/myapp/templates/login.html
+3
-1
3 additions, 1 deletion
myproject/myapp/templates/login.html
myproject/myapp/templates/register.html
+2
-1
2 additions, 1 deletion
myproject/myapp/templates/register.html
myproject/requirements.txt
+1
-0
1 addition, 0 deletions
myproject/requirements.txt
with
6 additions
and
2 deletions
myproject/myapp/templates/login.html
+
3
−
1
View file @
8ddbf0ef
...
@@ -11,8 +11,10 @@
...
@@ -11,8 +11,10 @@
<form
method=
"POST"
>
<form
method=
"POST"
>
{% csrf_token %}
{% csrf_token %}
{{ form.as_p }}
{{ form.as_p }}
<br>
<button
type=
"submit"
>
Login
</button>
<button
type=
"submit"
>
Login
</button>
<a
href=
"{% url 'register' %}"
>
Dont have Account Create
</a>
<br>
<a
href=
"{% url 'register' %}"
>
New User: Create Account
</a>
</form>
</form>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
myproject/myapp/templates/register.html
+
2
−
1
View file @
8ddbf0ef
...
@@ -9,8 +9,9 @@
...
@@ -9,8 +9,9 @@
<form
method=
"POST"
>
<form
method=
"POST"
>
{% csrf_token %}
{% csrf_token %}
{{ form.as_p }}
{{ form.as_p }}
<br>
<button
type=
"submit"
>
Register
</button>
<button
type=
"submit"
>
Register
</button>
<br>
<a
href=
"{% url 'user_login' %}"
>
Already created an account? Login
</a>
<a
href=
"{% url 'user_login' %}"
>
Already created an account? Login
</a>
</form>
</form>
</div>
</div>
...
...
This diff is collapsed.
Click to expand it.
myproject/requirements.txt
+
1
−
0
View file @
8ddbf0ef
...
@@ -2,6 +2,7 @@ asgiref==3.7.2
...
@@ -2,6 +2,7 @@ asgiref==3.7.2
Django==5.0.1
Django==5.0.1
django-appconf==1.0.6
django-appconf==1.0.6
django-compressor==4.4
django-compressor==4.4
django-tailwind==3.8.0
mysqlclient==2.2.3
mysqlclient==2.2.3
rcssmin==1.1.1
rcssmin==1.1.1
rjsmin==1.2.1
rjsmin==1.2.1
...
...
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