2018-12-11 20:57:16 +01:00
<!DOCTYPE html>
2019-01-16 20:00:52 +01:00
<!-- <html lang="en"> -->
2018-12-11 20:57:16 +01:00
< html lang = "pl-PL" >
< head >
< meta charset = "UTF-8" >
2019-01-16 20:00:52 +01:00
< title > Python Flask App< / title >
2018-12-11 20:57:16 +01:00
< link rel = "stylesheet" href = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
2019-01-16 20:00:52 +01:00
< link rel = "stylesheet" type = "text/css" href = "signup.css" >
<!-- <link href="http://getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet"> -->
2018-12-11 20:57:16 +01:00
< link href = "http://getbootstrap.com/examples/jumbotron-narrow/jumbotron-narrow.css" rel = "stylesheet" >
< link href = "../static/css/signup.css" rel = "stylesheet" >
< link rel = "stylesheet" href = "../static/css/calendar.css" >
< / head >
2019-01-16 20:00:52 +01:00
< body >
2018-12-11 20:57:16 +01:00
< div class = "container" >
2019-01-16 20:00:52 +01:00
< div class = "header" >
< nav >
< ul class = "nav nav-pills pull-left" >
<!-- <form><input type="button" value="Back" onClick="history.go( - 1);return true;"></form> -->
<!-- <li role="presentation" class="active"><input type="button" value="Back" onClick="history.go( - 1);return true;">
< / li > -->
<!-- <li role="presentation" class="active"><form action="http://google.com"><input type="button" value="Wstecz" onClick="history.go( - 1);return true;"></form></li> -->
< li role = "presentation" class = "active" > < a href = "userHome" > Wróć do strony domowej< / a >
< / li >
< / ul >
< ul class = "nav nav-pills pull-right" >
< li role = "presentation" class = "active" > < a href = "/logout" > Wyloguj< / a >
< / li >
< / ul >
< / nav >
< h3 class = "text-muted" > < center > Python Flask< / center > < / h3 >
2018-12-11 20:57:16 +01:00
< / div >
2019-01-16 20:00:52 +01:00
< div class = "jumbotron" style = "height: 550px;" >
< h2 > Dodaj nowe wydarzenie do kalendarza< / h2 >
2018-12-11 20:57:16 +01:00
< div class = "col-xs-12" >
< form class = "form-signin" action = "/addEvent" method = "post" >
Nazwa:
< input type = "text" name = "inputSummary" id = "inputSummary" class = "form-control" placeholder = "Wpisz nazwę" required autofocus / >
Lokalizacja:
< input type = "text" name = "inputLocation" id = "inputLocation" class = "form-control" placeholder = "Wpisz lokalizację" required / >
Opis:
< input type = "text" name = "inputDescription" id = "inputDescription" class = "form-control" placeholder = "Wpisz opis" required / >
Termin rozpoczęcia:
< input type = "datetime-local" name = "inputStart" id = "inputStart" class = "form-control" placeholder = "Wpisz termin" required / >
Termin zakończenia:
< input type = "datetime-local" name = "inputEnd" id = "inputEnd" class = "form-control" placeholder = "Wpisz termin" required / >
Uczestnicy:
< textarea type = "text" name = "inputAttendees" id = "inputAttendees" class = "form-control" placeholder = "Podaj uczestników (ich adresy gmailowe) rozdzielając ich przecinkiem" required > < / textarea >
< div >
< input type = "submit" value = "Dodaj" style = "margin-top: 5px; float: right;" class = "btn btn-success" / > < / div >
< / form >
< / div >
2019-01-16 20:00:52 +01:00
2018-12-11 20:57:16 +01:00
< / div >
2019-01-16 20:00:52 +01:00
< footer class = "footer" >
< p > © UAM 2018< / p >
< / footer >
2018-12-11 20:57:16 +01:00
< / div >
< / body >
< / html >