I am trying to link a "Sign In" button to another page called mainpage.html.
  <!doctype html>
<html>
    <head>
        <meta charset = "utf-8">
        <title>Transport Login Form</title>
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <div class="loginBox">
            <img src="user.png" class="user">
            <h2>Login To Decryption 1.0</h2>
            <form>
                <p>Email</p>
                <input type="text" name="" placeholder="Enter Email">
                <p>Password</p>
                <input type="password" name="" placeholder=".....">
                <input type="submit" value="Sign In">
                <a href="#">Forget Password</a>
            </form>
        </div>
    </body>
</html> 
At the input type "submit" and value="Sign In", I am trying to get the "Sign In" button to link to another page I have, called mainpage.html.
<input type="submit" value="Sign In">
I have tried various ways to get the button to work, but everything has failed.
 
     
     
    