portfolio/admin/index.html
2023-04-12 10:31:01 +02:00

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>