mirror of
https://github.com/1f349/tulip.git
synced 2024-11-09 22:42:53 +00:00
111 lines
4.0 KiB
HTML
111 lines
4.0 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>{{.ServiceName}}</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<h1>{{.ServiceName}}</h1>
|
||
|
</header>
|
||
|
<main>
|
||
|
<form method="GET" action="/">
|
||
|
<button type="submit">Home</button>
|
||
|
</form>
|
||
|
|
||
|
{{if .Edit}}
|
||
|
<h2>Edit Client Application</h2>
|
||
|
<form method="POST" action="/manage/apps">
|
||
|
<input type="hidden" name="action" value="edit"/>
|
||
|
<input type="hidden" name="offset" value="{{.Offset}}"/>
|
||
|
<input type="hidden" name="subject" value="{{.Edit.Sub}}"/>
|
||
|
<div>
|
||
|
<label>ID: {{.Edit.Sub}}</label>
|
||
|
</div>
|
||
|
<div>
|
||
|
<label for="field_name">Name:</label>
|
||
|
<input type="text" name="name" id="field_name" value="{{.Edit.Name}}" required/>
|
||
|
</div>
|
||
|
<div>
|
||
|
<label for="field_domain">Domain:</label>
|
||
|
<input type="text" name="domain" id="field_domain" value="{{.Edit.Domain}}" required/>
|
||
|
</div>
|
||
|
{{if .IsAdmin}}
|
||
|
<div>
|
||
|
<label for="field_sso">SSO: <input type="checkbox" name="sso" id="field_sso" {{if .Edit.SSO}}checked{{end}}/></label>
|
||
|
</div>
|
||
|
{{end}}
|
||
|
<div>
|
||
|
<label for="field_active">Active: <input type="checkbox" name="active" id="field_active" {{if .Edit.Active}}checked{{end}}/></label>
|
||
|
</div>
|
||
|
<button type="submit">Edit</button>
|
||
|
</form>
|
||
|
<form method="GET" action="/manage/apps">
|
||
|
<input type="hidden" name="offset" value="{{.Offset}}"/>
|
||
|
<button type="submit">Cancel</button>
|
||
|
</form>
|
||
|
{{else}}
|
||
|
<h2>Manage Client Applications</h2>
|
||
|
{{if eq (len .Apps) 0}}
|
||
|
<div>No client applications found</div>
|
||
|
{{else}}
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>ID</th>
|
||
|
<th>Name</th>
|
||
|
<th>Domain</th>
|
||
|
<th>SSO</th>
|
||
|
<th>Active</th>
|
||
|
<th>Owner</th>
|
||
|
<th>Actions</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{{range .Apps}}
|
||
|
<tr>
|
||
|
<td>{{.Sub}}</td>
|
||
|
<td>{{.Name}}</td>
|
||
|
<td>{{.Domain}}</td>
|
||
|
<td>{{.SSO}}</td>
|
||
|
<td>{{.Active}}</td>
|
||
|
<td>{{.Owner}}</td>
|
||
|
<td>
|
||
|
<form method="GET" action="/manage/apps">
|
||
|
<input type="hidden" name="offset" value="{{$.Offset}}"/>
|
||
|
<input type="hidden" name="edit" value="{{.Sub}}"/>
|
||
|
<button type="submit">Edit</button>
|
||
|
</form>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{{end}}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
{{end}}
|
||
|
|
||
|
<h2>Create Client Application</h2>
|
||
|
<form method="POST" action="/manage/apps">
|
||
|
<input type="hidden" name="action" value="create"/>
|
||
|
<input type="hidden" name="offset" value="{{.Offset}}"/>
|
||
|
<div>
|
||
|
<label for="field_name">Name:</label>
|
||
|
<input type="text" name="name" id="field_name" required/>
|
||
|
</div>
|
||
|
<div>
|
||
|
<label for="field_domain">Domain:</label>
|
||
|
<input type="text" name="domain" id="field_domain" required/>
|
||
|
</div>
|
||
|
{{if .IsAdmin}}
|
||
|
<div>
|
||
|
<label for="field_sso">SSO: <input type="checkbox" name="sso" id="field_sso"/></label>
|
||
|
</div>
|
||
|
{{end}}
|
||
|
<div>
|
||
|
<label for="field_active">Active: <input type="checkbox" name="active" id="field_active" checked/></label>
|
||
|
</div>
|
||
|
<button type="submit">Create</button>
|
||
|
</form>
|
||
|
{{end}}
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|