Files
NibasaViewer/README.md

12 lines
501 B
Markdown
Raw Normal View History

2023-07-30 18:58:27 -04:00
# Nibasa Viewer
A basic pure HTML+CSS gallery viewer in the vein of [PiGallery 2](https://bpatrik.github.io/pigallery2/) but meant to be compatible with somewhat old browsers.
## User authentication.
2023-08-23 17:45:39 -04:00
To login a user should be manually created by running the following commands in the Django shell, substituting the user's name, email and password as needed:
from django.contrib.auth.models import User
user = User.objects.create_user('<USERNAME>', '<EMAIL>', '<PASSWORD>')
user.save()