81 lines
2.1 KiB
HTML
81 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>malobeo tasklist</title>
|
|
<title>Bootstrap Example</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
|
|
|
|
<style>
|
|
|
|
{ margin: 0; padding: 0; }
|
|
|
|
|
|
|
|
body {
|
|
background-color: #F5F5F5;
|
|
font-family: Copperplate;
|
|
}
|
|
|
|
footer{
|
|
margin-top: auto;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<div class="row justify-content-center border-0">
|
|
<div class="col-xl-12 mt-5 mb-5">
|
|
<div class="container">
|
|
<div class="row col-md-12">
|
|
<div class="col-12 col-md pl-5">
|
|
<h2 class='text-dark'>tasklist</h2>
|
|
<h5 class='text-dark'>
|
|
enter your name to make yourself happy
|
|
</h5>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{{range .Tasklists}}
|
|
<div class="container">
|
|
<div class="row justify-content-center border-0">
|
|
<div class="col-xl-12 mt-5">
|
|
<div class="inherit_height mask rgba-gradient align-items-center border border-secondary rounded">
|
|
<social class="white">
|
|
<div class="form-group">
|
|
<div class="col-md-12 pt-3">
|
|
<h2>{{.Date}}</h2>
|
|
{{ if .Updated }}
|
|
<h3 class="text-success">Updated</h3>
|
|
{{end}}
|
|
<form method="POST">
|
|
{{range .Tasks}}
|
|
<div class="mb-3">
|
|
<h4><b><label for="Input{{.Name}}" name="Name" class="form-label white">{{.Name}}</label></b></h4>
|
|
<input type="text" name={{.Name}} class="form-control" value="{{.Value}}" id="Input{{.Name}}" aria-describedby="{{.Name}}Help">
|
|
<div id="{{.Name}}Help" class="form-text font-italic">{{.Description}}</div>
|
|
</div>
|
|
{{end}}
|
|
<input type="hidden" name="Name" value="{{.Date}}"/>
|
|
<input type="submit" class="btn btn-primary"></input>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</social>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
|
|
</body>
|
|
</html>`
|