Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
registerPage.html 1.75 KiB
<!DOCTYPE html>
<html lang="en" dir="ltr">
  <head>
    <meta charset="utf-8" />
    <title>Group 2 Showcase Project</title>
    <link rel="stylesheet" href="styles.css" />
  </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 active" href="./registerPage.html">Register</a>
          <a class="navLink" href="./addProjectPage.html">Add Project</a>
        </nav>
      </div>
    </header>
    <main>
      <h1 class="header">Hi, let's register your profile here!</h1>
      <p class="text">Please input your details below:</p>
      <form class="formContainer" id="myform" method="post">
        <div class="fieldContainer">
          <label class="formLabel" for="email"> First name: </label>
          <input
            class="formInput"
            type="text"
            id="firstname"
            name="firstname"
          />
        </div>
        <div class="fieldContainer">
          <label class="formLabel" for="surname"> Surname: </label>
          <input class="formInput" type="text" id="surname" name="surname" />
        </div>
        <div class="fieldContainer">
          <label class="formLabel" for="email">Email:</label>
          <input class="formInput" type="email" id="email" name="email" />
        </div>
        <div class="fieldContainer">
          <label class="formLabel" for="password">Password:</label>
          <input
            class="formInput"
            type="password"
            id="password"
            name="password"
          />
        </div>
        <button class="submitButton" type="submit">Register</button>
      </form>
    </main>
  </body>
</html>