Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
SOD/views/index.pug

89 lines
2.8 KiB
Text
Raw Normal View History

2020-06-26 16:59:54 +02:00
extends layout
block content
2020-08-14 20:08:00 +02:00
div.card
h1= title
p Welcome to Sandwiches Order Doua
form#command(action="/command" method="POST")
div.field
label(for="department") Department:
input#department(type="list" list="department-list" name="department" autocomplete="off" required)
2020-08-14 20:08:00 +02:00
datalist#department-list
each department in departments
option(value=department.name)
2020-08-14 20:08:00 +02:00
div.field
label(for="firstname") First name:
input#firstname(type="text" name="firstName" required)
2020-08-14 20:08:00 +02:00
div.field
label(for="lastname") Last name:
input#lastname(type="text" name="lastName" required)
2020-08-14 20:08:00 +02:00
div#command1.command
h2 Command 1
div.field
label(for="sandwich") Sandwich:
input#sandwich(type="list" list="sandwich-list" name="sandwich1" autocomplete="off" required)
2020-08-14 20:08:00 +02:00
div.field
label(for="day") Day:
input#day(type="date" name="date1" required)
2020-08-14 20:08:00 +02:00
div#command-action
2020-08-15 11:47:36 +02:00
a#add-command +
a#remove-command.hide -
2020-08-14 20:08:00 +02:00
div.field
input#send(type="submit" value="Pay")
datalist#sandwich-list
2020-08-16 12:48:43 +02:00
each sandwich in sandwiches
option(value=sandwich.name)
2020-08-15 11:47:36 +02:00
div#more
a About
a Contact
2020-08-15 11:47:36 +02:00
div#dark.hide
2020-08-17 13:22:52 +02:00
div#about.popup.card.hide
2020-08-15 11:47:36 +02:00
h1 About
p This software respond to the COVID-19 health crisis for the following students' offices food supply
div.images
div
2020-08-17 10:45:38 +02:00
img(src="images/logoBio.png")
p Bio student office
div
img(src="images/logoChimie.png")
p Chemical student office
2020-08-15 11:47:36 +02:00
div
img(src="images/logoGC.png")
p Civil engineering student office
2020-08-17 10:45:38 +02:00
div
img(src="images/logoGCGP.png")
p Chemical and process engineering student office
div
img(src="images/logoGEA.png")
p Management of companies and administrations student office
div
img(src="images/logoInfo.png")
p IT student office
2020-08-15 11:47:36 +02:00
p.before-link Made with ❤️ by
a(href="https://www.linkedin.com/in/florian-charlaix" target="_blank") Florian Charlaix
2020-08-17 13:22:52 +02:00
div#contact.popup.card.hide
2020-08-15 11:47:36 +02:00
h1 Contact
2020-08-17 10:45:38 +02:00
p.before-link Order issue:
a(href="mailto: ") test@test.fr
p.before-link Bio student office:
a(href="mailto: ")
p.before-link Chemical student office:
a(href="mailto: ")
p.before-link Civil engineering student office:
a(href="mailto: ")
p.before-link Chemical and process engineering student office:
a(href="mailto: bde.gcgp.lyon1@gmail.com") bde.gcgp.lyon1@gmail.com
p.before-link Management of companies and administrations student office:
a(href="mailto: ")
p.before-link IT student office:
a(href="mailto: contact@bde-info.org") contact@bde-info.org
2020-08-15 11:47:36 +02:00
2020-08-14 20:08:00 +02:00
script(src="javascripts/index.js")