This was part of my college lab work
The aim of this project was to create a web application to represent the use of databases and Python programming.
-
Backend:
- Python: 3.6
- Django: 2.2
-
Frontend:
- HTML5
- CSS3 (Bulma framework)
- JavaScript (ES6)
Used Django user authentication model
The parameters can be found at Django's official site
Field | Type | Description |
---|---|---|
user | ForeignKey | Linked to the User model |
email_confirmed | Boolean | Email confirmation value |
Field | Type | Description |
---|---|---|
author | ForeignKey | Linked to the User model |
text | TextField | Text of the blog |
created_date | DateField | Date the post was created |
published_data | DateField | Date the post was published |
image | ImageField | The url of the image of the post |
- If you already have an account, login.
- If you don't have one you can create an account and will be allowed to login after email verification.
- You can view all the other posts of the user
- You can see your own posts too.