Skip to content
Permalink
9e48e0248d
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
61 lines (48 sloc) 2.27 KB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup</title>
<link href="css/signup.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap" rel="stylesheet">
</head>
<body>
<div class="logo">
<img src="imgs/icon-transparent.png" height="100px">
<h1>Chatmate</h1>
</div>
<div class="profile">
<img class="smallImage" src="imgs/profile.png" id="userProfilePicDisplay"/>
<br><br>
<div id="usernameDisplay"></div>
<br>
<div id="userStatusDisplay"></div>
</div>
<div class="edit">
<p>Username</p>
<input type="text" placeholder="Username" name="UserName" id="usernameInput">
<p>Email</p>
<input type="text" placeholder="Email" name="EmailMessage" id="emailInput">
<p>Password</p>
<input type="text" placeholder="Password" name="PasswordMessage" id="passwordInput">
<p>
<button id="profileSaveInput" onclick="window.location.href='index.html'">Sign Up</button>
</p>
<p class="login">Already have an account? <a href="login.html">Login </a>here</p>
</div>
<script src="https://use.fontawesome.com/0e60a59edb.js"></script>
<!-- Firebase App (the core Firebase SDK) is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-app.js"></script>
<!-- If you enabled Analytics in your project, add the Firebase SDK for Analytics -->
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-analytics.js"></script>
<!-- Add Firebase products that you want to use -->
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.2/firebase-firestore.js"></script>
<script src="js/firebase-config.js"></script>
<script src="js/register-sw.js"></script>
<script src="https://cdn.jsdelivr.net/gh/joelsalisbury/firebase-chat-3440@1.2/firebase-chat-functions.js"></script>
<script src="js/main.js"></script>
<script src="js/signup.js"></script>
</body>
</html>