31 lines
753 B
Cheetah
31 lines
753 B
Cheetah
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ .title }}</title>
|
|
{{template "head" .}}
|
|
</head>
|
|
<body>
|
|
{{template "navbar" .}}
|
|
|
|
<div class="position-absolute top-50 start-50 translate-middle">
|
|
<div class="fs-3">{{ .title }}</div>
|
|
<hr>
|
|
{{template "userForm" .}}
|
|
<a class="link-secondary" href="/login">Login instead</a>
|
|
</div>
|
|
|
|
|
|
{{template "scripts" .}}
|
|
<script>
|
|
function submitForm(formData) {
|
|
fetch("/register", {method: 'POST', body: formData, redirect: 'follow'})
|
|
.then(response => response.json())
|
|
.then(() => {
|
|
window.location.href = "/";
|
|
}
|
|
).catch(error => console.log(error));
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|