DeeMcCart / CI_PP5_Jeweller

Jewellery website for CI Project 5
0 stars 2 forks source link

User Story: FTU_03, SO_01: Consistent Feedback to user (Messaging-Toasts) #53

Closed DeeMcCart closed 6 months ago

DeeMcCart commented 6 months ago

EPIC: #35

FTU_03 As a First-Time User I want to receive feedback at each step on the site so that I understand what I am doing, and, if I'm in a multi-step process, I understand how far along I am in the processs

Assumptions or Pre-Requisites:

Acceptance Criteria: (Must be completed before task is moved to 'Done')

Tasks

DeeMcCart commented 6 months ago

14/02/24 DMcC: Added timeout to Toast messages as follows - assigned id msg, added script below:

<script>
    setTimeout(function () {
        let messages = document.getElementById('msg');
        let alert = new bootstrap.Alert(messages);
        alert.close();
    }, 5000);
</script>