consolidate all repos to one for archive

This commit is contained in:
2025-01-28 13:46:42 +01:00
commit a6610fbc7a
5350 changed files with 2705721 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<h1 class="text-center mb-5">Prijava</h1>
<form action="login" method="post" class="mx-auto w-50">
<div class="mb-3">
<label class="form-label" >Uporabniško ime</label>
<input class="form-control" type="text" name="username" placeholder="Uporabniško ime" required>
</div>
<div class="mb-3">
<label class="form-label" >Geslo</label>
<input class="form-control" type="password" name="password" placeholder="Geslo" required>
</div>
<br/>
<div class="text-center">
<input class="btn btn-primary" type="submit" value="prijava">
</div>
</form>

View File

@@ -0,0 +1,22 @@
<h1 class="text-center mb-5">Registracija</h1>
<form action="/users" method="post" class="mx-auto w-50">
<div class="mb-3">
<label class="form-label">Email</label>
<input class="form-control" type="text" name="email" placeholder="E-mail" required>
</div>
<div class="mb-3">
<label class="form-label">Uporabniško ime</label>
<input class="form-control" type="text" name="username" placeholder="Username" required>
</div>
<div class="mb-3">
<label class="form-label">Geslo</label>
<input class="form-control" type="password" name="password" placeholder="Password" required>
</div>
<div class="text-center">
<button class="btn btn-primary" type="submit">REGISTER</button>
</div>
</form>