- Changed the build process to include a web UI build stage using Node.js. - Updated Go build stage to copy web UI files to the correct location. - Removed the main.go file as it is no longer needed. - Added SQLite database configuration to example config. - Updated dependencies in go.mod and go.sum, including new packages for JWT and SQLite. - Modified .gitignore to include new database and configuration files. Signed-off-by: zhenyus <zhenyus@mathmast.com>
46 lines
1.6 KiB
HTML
46 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login - Gitea Webhook Ambassador</title>
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/css/dashboard.css">
|
|
<style>
|
|
.login-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
background-color: #f5f5f5;
|
|
}
|
|
.login-form {
|
|
width: 100%;
|
|
max-width: 330px;
|
|
padding: 15px;
|
|
margin: auto;
|
|
background: white;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<form class="login-form" id="loginForm">
|
|
<h1 class="h3 mb-3 fw-normal text-center">Gitea Webhook Ambassador</h1>
|
|
<div class="alert alert-danger" role="alert" id="loginError" style="display: none;">
|
|
</div>
|
|
<div class="form-floating mb-3">
|
|
<input type="password" class="form-control" id="secret_key" name="secret_key" placeholder="Secret Key" required>
|
|
<label for="secret_key">Secret Key</label>
|
|
</div>
|
|
<button class="w-100 btn btn-lg btn-primary" type="submit">Sign in</button>
|
|
</form>
|
|
</div>
|
|
|
|
<script src="/js/jquery-3.7.1.min.js"></script>
|
|
<script src="/js/bootstrap.bundle.min.js"></script>
|
|
<script src="/js/dashboard.js"></script>
|
|
</body>
|
|
</html> |