PracowniaProgramowania/trening-planer/koszyk2.html

52 lines
1.6 KiB
HTML
Raw Normal View History

2019-02-06 23:29:13 +01:00
{{ define "Index2" }}
<div class="col-lg-12" style="background-color: pink">Usuń trening z wyników
<form action="/wypisz/" method="GET">
<select name="Nazwa">
{{ range . }} <option>{{.Nazwa}}</option>{{ end }}
</select>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
var date = $('#datepicker').datepicker({ dateFormat: 'yy-mm-dd' }).val(); } );
</script>
Ciezar <input type="text" class="form-control" id="Ciezar" name="Ciezar" onblur="validateZIPCode(this, document.getElementById('Ciezar_help'))" >
<p>Date: <input type="text" id="datepicker" name="Data"></p>
<input type="submit" value="Usuń" />
<input type="submit" value="Edytuj" />
</form>
</div>
</div>
</div>
</div>
<!-- <div class="container footer">
<div class="row">
<div class="col-xs-12">
<p>Wszystkie prawa zastrzeżone. <strong>mój</strong>produkt &copy; 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 }}