Skip to content

AskarSariev/TO_DO_LIST

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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