Skip to content

AskarSariev/CREDIT_CALCULATOR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CreditCalculator

CreditCalculator


CreditCalculator is a web application for calculation a credit.


Tools

Java 11 Spring Spring Spring Spring Thymeleaf Thymeleaf

Getting started

  1. Clone the repo:

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

    name database = credit_calculator_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

    AuthenticationPage
  3. Enter data for credit calculation

    MainPage
  4. Output of the payment schedule

    SchedulePage

Releases

No releases published

Packages

No packages published