mirror of
https://github.com/imgfloat/server.git
synced 2026-02-05 11:49:25 +00:00
Add Spring Boot Twitch overlay server with CI and Docker
This commit is contained in:
21
src/main/resources/templates/dashboard.html
Normal file
21
src/main/resources/templates/dashboard.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Imgfloat Dashboard</title>
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Welcome, <span th:text="${username}">user</span></h1>
|
||||
<p>Manage your overlay or invite channel admins.</p>
|
||||
<div class="actions">
|
||||
<a class="button" th:href="@{'/view/' + ${channel} + '/admin'}">Admin console</a>
|
||||
<a class="button" th:href="@{'/view/' + ${channel} + '/broadcast'}">Broadcast overlay</a>
|
||||
<form th:action="@{/logout}" method="post">
|
||||
<button class="secondary" type="submit">Logout</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user