Lightweight node app to use in place of plex to self host your video and movie collections. Running on just under 50MB of ram this is ideal for people looking to host videos on minimal hardware.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
952 B

<div class="justify-content-center">
<div class="card">
<div class="card-header">
<h2>Login</h2>
</div>
<div class="card-body">
<form action="/user/login" method ="post" class="p-2">
<div class="form-group">
<label for="username">User Name</label>
<input class="form-control" type="text" id="username" name="username" placeholder="Enter username" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input class="form-control" type="password" name="password" id="password" placeholder="Password" required>
</div>
<div class="text-center">
<button class="btn btn-lg btn-secondary">Login</button>
</div>
<br>
</form>
</div>
</div>
</div>