This repository has been archived on 2024-10-30. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
swb6-it-sec/Lab01/app/templates/login.tmpl

36 lines
928 B
Cheetah

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ .title }}</title>
{{template "head" .}}
</head>
<body>
{{template "toasts" .}}
{{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="/view/register">Register instead</a>
</div>
{{template "scripts" .}}
{{template "formScripts" .}}
<script>
userLoggedIn().then((loggedIn) => loggedIn && redirect("/"));
function submitForm(formData) {
axios({method: 'POST', url: '/auth/login', data: formData})
.then((response) => {
setCookie("username", response.data.username, 1);
redirect("/");
})
.catch((response) => {
showErrorToast(response.message);
});
}
</script>
</body>
</html>