I need help for my final PROJECT

hey guys am building a website for my final project and am stuck at the logging page i mean i made one buy i dont know how to set up an (account and passowrd) and if the usere enterd the information right to link him up to hte next page for now this is the code that ive made please help me id be so thankfull

Supermarket supply ![|1300x400](upload://c2XxrALhTGn22A4wWJGiWQhNmVk.jpeg)

login to see you duties

    <label for="username">Username:</label>
		<input type="text" name="username" id="username">
    <br>
    <label for="user-pw">Password:</label>
  
			<input id="user-pw" type="password" name="user-pw">
    <input type="submit" value="Login">
  </form>
</section>

That is the html, how are you going to verify the username and password entered? Do you have a back-end to your website? Or where you going to use front-end JS only (insecure)?

i just started with the project so i dont know that much about the login system what should i do next?

Well, if you want a fully function login/register system, then the form is only a small part

the next part would be a database (DB) to store usernames and passwords. Then you would need something to have the front-end (form submission) to your database, often a back-end language is used for this. There are many language (php, golang, python, ruby and more) which can fulfill this task.