Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
GrabGrub
Project
Project
Details
Activity
Releases
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Matthew Dominic M. Dizon
GrabGrub
Commits
b3b95b03
Commit
b3b95b03
authored
May 27, 2021
by
Jansen Lao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
design
parent
dbe5d5cf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
10 deletions
+32
-10
add_food.html
GrabGrub/Kiosk/templates/Kiosk/add_food.html
+4
-5
add_order.html
GrabGrub/Kiosk/templates/Kiosk/add_order.html
+5
-5
base.html
GrabGrub/Kiosk/templates/Kiosk/base.html
+23
-0
No files found.
GrabGrub/Kiosk/templates/Kiosk/add_food.html
View file @
b3b95b03
...
...
@@ -6,10 +6,10 @@
<div
class=
"card-header"
>
Enter Food Details:
</div>
<form
method=
"POST"
action=
"{% url 'add_food' %}"
>
{% csrf_token %}
<form
method=
"POST"
action=
"{% url 'add_food' %}"
style=
"padding-left: 10"
>
{% csrf_token %}
<div
class=
"form-group"
>
<label
for=
"name"
>
Food Name:
</label>
<label
for=
"name"
>
Food Name:
</label>
<input
type=
"text"
class=
"form-control"
id=
"food_name"
name=
"food_name"
required
>
</div>
...
...
@@ -24,12 +24,11 @@
</div>
<div
class=
"form-group"
>
<label
for=
"name"
>
Date Created:
</label>
<label
for=
"name"
>
Date Created:
</label>
<input
type=
"date"
class=
"form-control"
id=
"date"
name=
"date"
required
>
</div>
<a
href=
"{% url 'add_food' %}"
><button
type=
"submit"
class=
"mt-3 btn btn-primary"
>
Add Food
</button></a>
<a
href=
"{% url 'add_food' %}"
><button
type=
"submit"
class=
"mt-3 btn btn-primary"
>
Add Food
</button></a>
</form>
</div>
...
...
GrabGrub/Kiosk/templates/Kiosk/add_order.html
View file @
b3b95b03
...
...
@@ -6,11 +6,11 @@
<div
class=
"card-header"
>
Enter Order Details:
</div>
<form
method=
"POST"
action=
"{% url 'add_order' %}"
>
{% csrf_token %}
<form
method=
"POST"
action=
"{% url 'add_order' %}"
style=
"padding-left: 10"
>
{% csrf_token %}
<br>
<div
class=
"form-group"
>
<label
for=
"name"
>
Food:
</label>
<select
name=
"food"
class=
"form-select"
style=
"max-width: 200px; margin-right: 75px;"
required
>
<select
name=
"food"
class=
"form-select"
required
>
{% for food in foods %}
<option
value=
"{{food.id}}"
>
{{food.name}}
</option>
{% endfor %}
...
...
@@ -29,7 +29,7 @@
<div
class=
"form-group"
>
<label
for=
"name"
>
Customer:
</label>
<select
name=
"customer"
class=
"form-select"
style=
"max-width: 200px; margin-right: 75px;"
required
>
<select
name=
"customer"
class=
"form-select"
required
>
{% for customer in customers %}
<option
value=
"{{customer.id}}"
>
{{customer.name}}
</option>
{% endfor %}
...
...
@@ -38,7 +38,7 @@
<div
class=
"form-group"
>
<label
for=
"name"
>
Mode of Payment:
</label>
<select
name=
"payment_mode"
class=
"form-select"
style=
"max-width: 200px; margin-right: 75px;"
required
>
<select
name=
"payment_mode"
class=
"form-select"
required
>
<option
value=
"Cash"
>
Cash
</option>
<option
value=
"Card"
>
Card
</option>
</select>
...
...
GrabGrub/Kiosk/templates/Kiosk/base.html
View file @
b3b95b03
...
...
@@ -12,6 +12,29 @@
<script
src=
"{% static '/bootstrap/js/bootstrap.min.js' %}"
></script>
</head>
<style>
.card-header
{
background-color
:
rgb
(
0
,
238
,
255
);
color
:
black
;
}
.card
{
max-width
:
100%
;
}
select
{
background-color
:
rgb
(
206
,
206
,
253
);
max-width
:
200px
;
margin-right
:
75px
;
font-weight
:
700
;
border-radius
:
.5em
;
border
:
1px
solid
#aaa
;
}
input
{
max-width
:
75%
;
}
a
:hover
{
color
:
pink
;
}
</style>
<body>
<nav
class=
"navbar navbar-expand-lg navbar-light bg-light mb-3 sticky-top"
>
<a
class=
"navbar-brand mb-0"
href=
"/"
>
GrabGrub
</a>
...
...
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