PracowniaProgramowania/trening-planer/planowanieTreningu2.html

35 lines
1010 B
HTML
Raw Normal View History

2019-02-10 20:01:49 +01:00
{{ define "Index2" }}
<form action="/planer/" method="POST">
2019-02-16 22:29:58 +01:00
<select name="cwiczenie_nazwa" style="width: 180px;margin-top: 20px">
2019-02-10 20:01:49 +01:00
{{ range . }} <option>{{.Nazwa}}</option>{{ end }}
</select>
2019-02-16 22:29:58 +01:00
<input type="text" class="form-control" id="co_ile_ciezar" name="co_ile_ciezar" placeholder="co ile trenngów" style="width: 180px;margin-top: 10px" >
<input type="text" class="form-control" id="ciezar_dodaj" name="ciezar_dodaj" placeholder="Jaki ciężar" style="width: 180px;margin-top: 10px">
<input type="text" class="form-control" id="co_ile_powtorzenie" name="co_ile_powtorzenie" placeholder="co ile trenngów" style="width: 180px;margin-top: 10px">
<input type="text" class="form-control" id="powtorzenie_dodaj" name="powtorzenie_dodaj" placeholder="Ile powtórzeń" style="width: 180px;margin-top: 10px">
<input type="submit" value="Zatwierdzam" style="margin-top: 20px" />
2019-02-10 20:01:49 +01:00
</div>
</form>
</div>
</div>
</div>
2019-02-16 22:29:58 +01:00
2019-02-10 20:01:49 +01:00
{{ end }}