mirror of
https://github.com/hexahigh/portfolio.git
synced 2025-12-12 03:25:06 +01:00
22 lines
681 B
HTML
22 lines
681 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Admin</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<script src="index.js" type="module" defer></script>
|
|
</head>
|
|
|
|
<body>
|
|
<form>
|
|
<input id="emailInput" type="text" name="Email" placeholder="Email">
|
|
<input id="passInput" type="password" name="password" placeholder="Password">
|
|
<button id="signUpButton" type="button">Sign up</button>
|
|
</form>
|
|
<button id="googleSignButton">Sign in/up with google</button>
|
|
</body>
|
|
|
|
</html> |