2018-12-18 23:17:57 +01:00
{{ define "Index" }}
<!DOCTYPE html>
< html lang = "pl" >
< head >
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2019-01-20 11:32:31 +01:00
< title > Planowanie treningu< / title > < link rel = "Shortcut icon" href = "img/logo2.jpg" / >
2018-12-18 23:17:57 +01:00
< link type = "text/css" href = "/static/css/bootstrap.min.css" rel = "stylesheet" >
< link rel = "Stylesheet" type = "text/css" href = "/static/css_moje/style_moje.css" / >
< link href = "http://fonts.googleapis.com/css?family=Roboto:400,700,400italic,500italic&subset=latin,latin-ext" rel = "stylesheet" >
< script >
2018-12-31 00:55:09 +01:00
2019-01-16 23:47:03 +01:00
function placeOrder1(form) {
if( validateZIPCode(form["co_ile_ciezar"], form["co_ile_ciezar_help"]) & & validateZIPCode(form["ciezar_dodaj"], form["ciezar_dodaj_help"]) & & validateZIPCode(form["co_ile_powtorzenie"], form["co_ile_powtorzenie_help"]) & & validateZIPCode(form["powtorzenie_dodaj"], form["powtorzenie_dodaj_help"]) ) {
form.submit()}
else {
alert("Przykro mi, ale podane informacje nie s¹ prawid³owe.");
}
}
function placeOrder2(form) {
if( validateZIPCode(form["Ciezar"], form["Ciezar_help"]) ) {
form.submit()}
else {
alert("Przykro mi, ale podane informacje nie s¹ prawid³owe.");
}
2018-12-31 00:55:09 +01:00
}
2019-01-16 23:47:03 +01:00
function sprawdzanieFormularza(inputField){
var regex=/\d/;
if(regex.test(inputField.value)){
alert("Podaj cyfry");
}
}
function validateZIPCode(inputField, helpText) {
// Najpierw sprawdzamy, czy d³ugoœæ pola jest ró¿na od 5
// Teraz sprawdzamy, czy w polu wpisano liczbê
if (isNaN(inputField.value)) {
// Dane nie s¹ prawid³owe, wyœwietlamy zatem komunikat o b³êdzie
if (helpText != null)
helpText.innerHTML = "Proszê wpisaæ same cyfry.";
return false;
}
else {
// Dane s¹ w porz¹dku, usuwamy komunikat o b³êdzi
if (helpText != null)
helpText.innerHTML = "";
return true;
}
}
< / script >
2018-12-18 23:17:57 +01:00
< / head >
< body >
< div class = "container" >
< div class = "row" >
< nav class = "navbar navbar-default navbar-fixed-top" >
< div class = "container" >
< div class = "navbar-header" >
< button type = "button" class = "navbar-toggle collapsed"
data-toggle="collapse"
data-target="#mainmenu"
aria-expanded="false">
< span class = "sr-only" > Przełącznik nawigacji< / span >
< span class = "icon-bar" > < / span >
< span class = "icon-bar" > < / span >
< span class = "icon-bar" > < / span >
< / button >
< / div >
< div class = "collapse navbar-collapse navbar-right mainmenu" id = "mainmenu" >
< ul class = "nav navbar-nav" >
2019-01-20 11:32:31 +01:00
2019-01-16 23:47:03 +01:00
< li > < a class = "nav-link" href = "/planer/" > Zaplanuj nowy trening< / a > < / li >
< li > < a class = "nav-link" href = "/wypisz/" > Twoj trening< / a > < / li >
< li > < a class = "btn btn-default" href = "/wyniki/" > Wyniki< / a > < / li >
< li > < a class = "nav-link" href = "/dodajcwiczenie/" > Dodaj ćwiczenie< / a > < / li >
2019-01-20 11:32:31 +01:00
< li > < a class = "nav-link" href = "/wymiary/" > Wymiary< / a > < / li >
2019-01-16 23:47:03 +01:00
2019-01-20 11:32:31 +01:00
< li > < form action = "/logowanie" method = "GET" > < button class = "btn btn-default" style = "height: 50px" value = "brak" name = "cookies" > Wyloguj< / button > < / form > < / li >
< / ul >
2018-12-18 23:17:57 +01:00
< / div >
< / div >
< / nav >
< / div > < br >
< br > < br >
< br >
< div class = "container" >
< div class = "row" >
< div class = "col-xs-12" >
2018-12-31 00:55:09 +01:00
< div class = "table-responsive" >
< table class = "table table-hover" >
< tbody >
< tr >
2019-01-16 23:47:03 +01:00
< form action = "/planer/" method = "POST" >
2018-12-31 00:55:09 +01:00
< td >
2019-01-16 23:47:03 +01:00
< select name = "rodzaj_treningu" style = "width: 180px" >
2018-12-31 00:55:09 +01:00
< option > FWB< / option >
< option > ABS< / option >
< / td >
2019-01-16 23:47:03 +01:00
< td > < input type = "text" class = "form-control" id = "co_ile_ciezar" name = "co_ile_ciezar" placeholder = "co ile trenngów" onblur = "validateZIPCode(this, document.getElementById('co_ile_ciezar_help'))" style = "width: 180px" >
< / td >
< td > < input type = "text" class = "form-control" id = "ciezar_dodaj" name = "ciezar_dodaj" placeholder = "Jaki ciężar" onblur = "validateZIPCode(this, document.getElementById('ciezar_dodaj_help'))" style = "width: 180px" > < / td >
< td > < input type = "text" class = "form-control" id = "co_ile_powtorzenie" name = "co_ile_powtorzenie" placeholder = "co ile trenngów" onblur = "validateZIPCode(this, document.getElementById('co_ile_powtorzenie_help'))" style = "width: 180px" > < / td >
< td > < input type = "text" class = "form-control" id = "powtorzenie_dodaj" name = "powtorzenie_dodaj" placeholder = "Ile powtórzeń" onblur = "validateZIPCode(this, document.getElementById('powtorzenie_dodaj_help'))" style = "width: 180px" > < / td >
2018-12-31 00:55:09 +01:00
2019-01-16 23:47:03 +01:00
2019-01-20 11:32:31 +01:00
< td > < input type = "button" value = "Zatwierdzam" onclick = "placeOrder1(this.form);" / > < / div > < / td >
2018-12-31 00:55:09 +01:00
< / form >
< / tr >
< / tbody >
< / table >
2018-12-18 23:17:57 +01:00
< div class = "table-responsive" >
< table class = "table table-hover" >
< caption > Twój trening< / caption >
< thead style = "background-color: #999999" >
< tr >
< th > Ćwiczenie< / th >
< th > Ilość serii< / th >
< th > Ilość powtórzeń< / th >
< th > Ciężar< / th >
< th > Akcja< / th >
< / tr >
< / thead >
< tbody >
< tr >
< form action = "/planer/" method = "POST" >
< td > < select name = "Nazwa" >
{{ range . }} < option > {{.Nazwa}}< / option > {{ end }}
< / select > < / td >
2018-12-31 00:55:09 +01:00
< td > < select id = "Serie" name = "Serie" >
< option > 1< / option >
< option > 2< / option >
< option > 3< / option >
< option > 4< / option >
< option > 5< / option >
< / select > < / td >
< td > < select name = "Powtorzenia" >
< option > 6< / option >
< option > 7< / option >
< option > 8< / option >
< option > 9< / option >
< option > 10< / option >
< option > 11< / option >
< option > 12< / option >
< option > 13< / option > < / select > < / td >
2019-01-16 23:47:03 +01:00
< td > < input type = "text" class = "form-control" name = "Ciezar" id = "Ciezar1" onblur = "validateZIPCode(this, document.getElementById('Ciezar_help'))" > < / td >
2018-12-18 23:17:57 +01:00
< td > < div class = "btn-group btn-group-xs" role = "group" aria-label = "Zarządzaj wpisem" >
2019-01-20 11:32:31 +01:00
< input type = "button" value = "Zatwierdzam" onclick = "placeOrder2(this.form);" / > < / div > < / td >
2018-12-18 23:17:57 +01:00
< / form >
< / tr >
2019-01-20 11:32:31 +01:00
2018-12-18 23:17:57 +01:00
< / tbody >
< / table >
< / div >
< / div >
< / div >
< / div > <!--
< div id = "hst0" style = "display: none" > < div class = "table-responsive" >
< table class = "table table-hover" >
< caption > Twój trening< / caption >
< thead style = "background-color: #999999" >
< tr >
< th > Ćwiczenie< / th >
< th > Ilość serii< / th >
< th > Ilość powtórzeń< / th >
< th > Ciężar< / th >
< th > Akcja< / th >
< / tr >
< / thead >
< tbody >
< tr >
< form action = "/planer/" method = "POST" >
< td > < select name = "Nazwa" >
{{ range . }} < option > {{.Nazwa}}< / option > {{ end }}
< / select > < / td >
< td > < input type = "text" class = "form-control" name = "Serie" > < / td >
< td > < input type = "text" class = "form-control" name = "Powtorzenia" > < / td >
< td > < input type = "text" class = "form-control" name = "Ciezar" > < / td >
< td > < div class = "btn-group btn-group-xs" role = "group" aria-label = "Zarządzaj wpisem" >
< button type = "submit" class = "btn btn-default" onclick = "dodawanieDoBazy()" > Podgląd< / button > < / div > < / td >
< / form >
< / tr >
< / tbody >
< / table >
< / div >
< / div >
< a href = "javascript:dodawanieCwiczenia('hst0');" > < button type = "submit" class = "btn btn-default" style = "margin-bottom: 50px" > Dodaj ćwiczenie< / button > < / a >
-->
< div class = "container footer" >
< div class = "row" >
< div class = "col-xs-12" >
< p > Wszystkie prawa zastrzeżone. < strong > mój< / strong > produkt © 2015< br >
< small > kontakt@mojprodukt.pl< / small >
< / p >
< / div >
< / div >
< / div >
< script src = "https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js" > < / script >
< script src = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" > < / script >
< / body >
< / html >
{{ end }}