replaced files with a symlink to the build directory of the frontend
This commit is contained in:
parent
21ef0409d3
commit
4e605d559b
@ -1,28 +0,0 @@
|
||||
<!--
|
||||
Placeholder file
|
||||
-->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>2 FA</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="main-container">
|
||||
|
||||
<h2>Verification</h2>
|
||||
<form action="/api/login/verify" method="post">
|
||||
<label for="code">Code: </label>
|
||||
<input id="code" name="code" type="password" required><br />
|
||||
<input type="submit" value="Verify">
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,30 +0,0 @@
|
||||
<!--
|
||||
Placeholder file
|
||||
-->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Finalise Account</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="main-container">
|
||||
|
||||
<h2>Finalise account registration</h2>
|
||||
<form action="/api/register/finalise" method="post">
|
||||
<label for="username">Username (required): </label>
|
||||
<input id="username" name="username" type="text" autocomplete="off" required><br />
|
||||
<label for="password">Password (not required): </label>
|
||||
<input id="password" name="password" type="password"><br />
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,30 +0,0 @@
|
||||
<!--
|
||||
Placeholder file
|
||||
-->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Home</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="main-container">
|
||||
|
||||
<h2>Add 2FA</h2>
|
||||
<img src="/api/user/2fa" />
|
||||
|
||||
<form action="/api/user/2fa/verify" method="post">
|
||||
<label for="code">2FA code</label>
|
||||
<input type="text" id="code" name="code">
|
||||
<input type="submit" value="Submit">
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,39 +0,0 @@
|
||||
<!--
|
||||
Placeholder file
|
||||
-->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>Login</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="main-container">
|
||||
|
||||
<h2>Log in</h2>
|
||||
<form action="/api/login" method="post">
|
||||
<label for="username">Username: </label>
|
||||
<input id="username" name="username" type="text" autocomplete="off" required><br />
|
||||
<label for="password">Password: </label>
|
||||
<input id="password" name="password" type="password" required><br />
|
||||
<input type="submit" value="Log in">
|
||||
</form>
|
||||
|
||||
<h2>Register</h2>
|
||||
<form action="/api/register" method="post">
|
||||
<label for="username">Username: </label>
|
||||
<input id="username" name="username" type="text" autocomplete="off" required><br />
|
||||
<label for="password">Password: </label>
|
||||
<input id="password" name="password" type="password" required><br />
|
||||
<input type="submit" value="Register">
|
||||
</form>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user