Skip to content

Instantly share code, notes, and snippets.

@oshyam
Created April 15, 2021 04:50
Show Gist options
  • Save oshyam/3e23c139c4a7341d59bf00ee1f760539 to your computer and use it in GitHub Desktop.
Save oshyam/3e23c139c4a7341d59bf00ee1f760539 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name=" viewport" content="width=device-width, initial-scale=1.0">
<script src="https://www.gstatic.com/firebasejs/8.2.7/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.7/firebase-auth.js"></script>
<script src="form.js"></script>
<title>Login System</title>
</head>
<body>
<div class="formContainer">
<h1>Enter Credentials Here:</h1>
<input type="email" placeholder="email here" id="email"><br>
<input type="password" placeholder="password here" id="password"><br>
<button onclick="signUp()" id="signUp">SignUp</button>
<button onclick="signIn()" id="signIp">SignIn</button>
<button onclick="signOut()" id="signOut">SignOut</button>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment