<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8" /> <title>Group 2 Showcase Project</title> <link rel="stylesheet" href="styles.css" /> <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap" /> </head> <body> <header> <div class="appBar"> <span class="appName">StudentProfile</span> <nav class="navigation"> <a class="navLink" href="./main.html">Home</a> <a class="navLink" href="./registerPage.html">Register</a> <a class="navLink active" href="./addProjectPage.html">Add Project</a> </nav> </div> </header> <main> <h1 class="header">Hi, let's add your project here!</h1> <p class="text">Please input your project's details below:</p> <form class="formContainer" id="myform" method="post"> <div class="fieldContainer"> <label class="formLabel" for="project-name"> Name of project: </label> <input class="formInput" type="text" id="project-name" name="project-name" /> </div> <div class="fieldContainer"> <label class="formLabel" for="description"> Description: </label> <textarea rows="10" cols="50" class="formTextarea" placeholder="Introduce your project" id="description" name="description" ></textarea> </div> <div class="fieldContainer"> <label class="formLabel" for="myFile"> Upload file: </label> <input class="formInput" type="file" id="myFile" name="myFile" multiple> </div> <button class="submitButton" type="submit">Add project</button> </form> </main> </body> </html>