Mobile devices register
This commit is contained in:
parent
da69a8f0c8
commit
236bc578f2
8 changed files with 86 additions and 2 deletions
|
@ -1,4 +1,6 @@
|
|||
.ocenyZwykle-table, .ocenySzczegoly-table {
|
||||
table:not(.presentData),
|
||||
.ocenyZwykle-table,
|
||||
.ocenySzczegoly-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
text-align: center;
|
||||
|
|
|
@ -32,9 +32,11 @@ nav#menuGlowne {
|
|||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
@at-root .button,
|
||||
a[class^="button"] {
|
||||
background: #8B0000;
|
||||
padding: 0.5rem 1.5rem;
|
||||
display: inline-block;
|
||||
margin: 1rem 0;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
article {
|
||||
padding: 30px 0;
|
||||
padding: 10px 0;
|
||||
|
||||
&:not(:last-child) {
|
||||
border-bottom: 1px solid red;
|
||||
|
|
|
@ -201,4 +201,20 @@ router.get("/Default/123456/Szkola.mvc/Nauczyciele", (req, res) => {
|
|||
});
|
||||
});
|
||||
|
||||
router.get("/Default/123456/DostepMobilny.mvc", (req, res) => {
|
||||
res.render('opiekun/mobilny')
|
||||
});
|
||||
|
||||
router.get('/Default/123456/DostepMobilny.mvc/Rejestruj', (req, res) => {
|
||||
res.render('opiekun/mobilny-rejestruj')
|
||||
});
|
||||
|
||||
router.get('/Default/123456/DostepMobilny.mvc/Wyrejestruj/:id', (req, res) => {
|
||||
res.render('opiekun/mobilny-wyrejestruj');
|
||||
});
|
||||
|
||||
router.post("/Default/123456/DostepMobilny.mvc/PotwierdzWyrejestrowanie", (req, res) => {
|
||||
res.redirect("/Default/123456/DostepMobilny.mvc");
|
||||
});
|
||||
|
||||
module.exports = router;
|
||||
|
|
|
@ -48,6 +48,11 @@ prepend content
|
|||
a(href=opiekunRoot + "/ZadaniaDomowe.mvc") Zadania domowe
|
||||
li
|
||||
a(href=opiekunRoot + "/Szkola.mvc/Nauczyciele") Szkoła i nauczyciele
|
||||
ul
|
||||
li
|
||||
a(href="https://github.com/wulkanowy/fake-log/issues") Pomoc
|
||||
li
|
||||
a(href=opiekunRoot + "/DostepMobilny.mvc") Dostęp mobilny
|
||||
ul#idSection
|
||||
li
|
||||
label(for="uczenDropDownList") Uczeń:
|
||||
|
|
17
src/views/opiekun/mobilny-rejestruj.pug
Normal file
17
src/views/opiekun/mobilny-rejestruj.pug
Normal file
|
@ -0,0 +1,17 @@
|
|||
extends layout
|
||||
|
||||
append extraHeader
|
||||
style
|
||||
| .blockElement {
|
||||
| display: block;
|
||||
| margin: 10px;
|
||||
| }
|
||||
|
||||
append content
|
||||
main.mainContainer
|
||||
h1 Rejestracja urządzenia mobilnego
|
||||
|
||||
article#rejestracja-formularz.text-center
|
||||
span.blockElement Token: FK100000
|
||||
span.blockElement Symbol: Default
|
||||
span.blockElement Pin: 999999
|
11
src/views/opiekun/mobilny-wyrejestruj.pug
Normal file
11
src/views/opiekun/mobilny-wyrejestruj.pug
Normal file
|
@ -0,0 +1,11 @@
|
|||
extends layout
|
||||
|
||||
append content
|
||||
main.mainContainer
|
||||
h1 Wyrejestruj urządzenie
|
||||
|
||||
h2 Wulkanowy (Android 10.0.0)
|
||||
|
||||
form(action="/Default/123456/DostepMobilny.mvc/PotwierdzWyrejestrowanie", method="post")
|
||||
input#id(name="Id", type="hidden", value="1234")
|
||||
input.button(type="submit" value="Wyrejestruj")
|
31
src/views/opiekun/mobilny.pug
Normal file
31
src/views/opiekun/mobilny.pug
Normal file
|
@ -0,0 +1,31 @@
|
|||
extends layout
|
||||
|
||||
append content
|
||||
main.mainContainer
|
||||
h1 Dostęp mobilny
|
||||
|
||||
article
|
||||
h2 Rejestracja
|
||||
a.button(href="/Default/123456/DostepMobilny.mvc/Rejestruj") Zarejestruj urządzenie mobilne
|
||||
|
||||
article
|
||||
h2 Zarejestrowane urządzenia
|
||||
|
||||
table
|
||||
thead
|
||||
tr
|
||||
th Urządzenie
|
||||
th Data rejestracji
|
||||
th
|
||||
tbody
|
||||
tr.text-center
|
||||
td To Be Filled By O.E.M.#To Be Filled By O.E.M. (Windows 8.1)
|
||||
td 15.06.2015 godz: 20:00:00
|
||||
td.cellWithButton
|
||||
a.button(href="/Default/123456/DostepMobilny.mvc/Wyrejestruj/1233") Wyrejestruj
|
||||
|
||||
tr.text-center
|
||||
td Wulkanowy (Android 10.0.0)
|
||||
td 15.06.2015 godz: 20:00:00
|
||||
td.cellWithButton
|
||||
a.button(href="/Default/123456/DostepMobilny.mvc/Wyrejestruj/1234") Wyrejestruj
|
Loading…
Reference in a new issue