new file: __debug_bin.exe modified: bot.db modified: db/db.go modified: go.mod new file: handlers/auth.go modified: handlers/dashboard.go new file: handlers/saas.go modified: handlers/webhook.go modified: main.go new file: saas_bot.db modified: services/openrouter.go new file: services/types.go modified: services/whatsapp.go new file: static/style.css modified: templates/dashboard.html new file: templates/landing.html new file: templates/login.html new file: templates/register.html deleted: types/types.go
20 lines
814 B
HTML
20 lines
814 B
HTML
{{ define "register.html" }}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head><title>Register</title><link rel="stylesheet" href="/static/style.css"></head>
|
|
<body>
|
|
<div class="center-container">
|
|
<div class="auth-box">
|
|
<h2 style="color: white;">Start Free Trial</h2>
|
|
{{ if .Error }}<div style="color: red; margin-bottom: 10px;">{{ .Error }}</div>{{ end }}
|
|
<form action="/register" method="POST">
|
|
<input type="email" name="email" placeholder="Email" required>
|
|
<input type="password" name="password" placeholder="Password" required>
|
|
<button type="submit">Create Account</button>
|
|
</form>
|
|
<p style="margin-top: 15px;"><a href="/login">Already have an account?</a></p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
{{ end }} |