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.
kfet/views/commands.pug

49 lines
1.3 KiB
Text
Raw Permalink Normal View History

extends layout
block content
nav
ul
a(href="/stock")
li Stock
a(href="/menu")
li Menu
a(href="/service" target="popup")
li Service
2020-06-01 17:32:49 +02:00
a(href="/kitchen")
li Kitchen
a(href="#popup")
li#logout Disconnect
2020-05-29 12:55:56 +02:00
div#main-container.bg-contact2(style="background-image: url(/images/bg-01.jpg);height: 93vh")
form.container(action="")
div#dish
h1 Dish
ul
div#ingredient
h1 Ingredients
ul
div#sauce
h1 Sauce
ul
div#drink
h1 Drink
ul
div#dessert
h1 Dessert
ul
div#resume
h1 Command 1
2020-05-29 19:44:12 +02:00
p#p-dish
p#p-ingredient
p#p-sauce
p#p-drink
p#p-dessert
input#user(list="user_list" type="text" placeholder="Username")
datalist#user_list
button.validation(type="button") Confirm
h2 0€
div.list
script(src="/socket.io/socket.io.js")
2020-06-01 01:19:19 +02:00
script(src="/javascripts/commands.js" type="module")