Skip to content

AskarSariev/TO_DO_LIST

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9991e76 · Jan 2, 2023

History

41 Commits
Oct 8, 2022
Jan 2, 2023
Jan 2, 2023
Dec 18, 2022
Jan 2, 2023
Oct 8, 2022
Oct 8, 2022
Dec 18, 2022

Repository files navigation

TO DO LIST

Todolist


ToDoListApp is a web task manager.


Tools

Java 11 Spring Spring Spring Spring Thymeleaf Thymeleaf

Getting started

  1. Clone the repo:

    git clone https://github.com/AskarSariev/ToDoList.git
    
  2. Create database:

    name database = todolist_db;
    username = postgres;
    password = 12345;
    
  3. Create table in database:

    CREATE TABLE Users (
    
        id BIGSERIAL PRIMARY KEY,
        
        username VARCHAR(255) NOT NULL UNIQUE,
        
        password VARCHAR(255) NOT NULL
        
    );
    

Using

  1. Before using the application user should registr

    RegistrationPage
  2. Enter username, password

    LoginPage
  3. Show task list

    TaskListPage
  4. Add task

    AddPage
  5. Update task

    UpdatePage