76 lines
3.3 KiB
HTML
76 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
|
<!--<html lang="en">-->
|
|
<html lang="pl-PL">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Python Flask App</title>
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
|
<link rel="stylesheet" type="text/css" href="signup.css">
|
|
<!-- <link href="http://getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet"> -->
|
|
|
|
<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>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
<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>
|
|
</div>
|
|
|
|
<div class="jumbotron" style="height: 550px;">
|
|
<h2>Dodaj nowe wydarzenie do kalendarza</h2>
|
|
<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>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<footer class="footer">
|
|
<p>© UAM 2018</p>
|
|
</footer>
|
|
|
|
</div>
|
|
</body>
|
|
|
|
</html> |