Skip to content

Commit

Permalink
Update login.html
Browse files Browse the repository at this point in the history
  • Loading branch information
smccle authored Sep 14, 2022
1 parent 4145d29 commit 89c75eb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion login.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<link rel="stylesheet" href="./style.css">
<link rel="icon" type="image/x-icon" href="./favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1d">
<title>ZYTK Code Editor Alpha</title>
<title>NEKO Code Editor | Log-In</title>
<meta name="description" content="Online JavaScript Compiler">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.">
<style>
Expand All @@ -16,6 +16,8 @@
<form id="signup" style="width: 18%; background-color: gray; padding: 5px; display: none;">
<p style="font-family: Arial; font-size: 25px; font-weight: bold;">Log In:</p>
<br><br>
<input id="email2" type="email" placeholder="email">
<br><br>
<input id="username2" type="text" placeholder="username">
<br><br>
<input id="password2" type="password" placeholder="password">
Expand All @@ -35,6 +37,14 @@
<input class="btn" type="button" id="submit" value="Submit">
</form>

<form id="codeForm" style="width: 18%; background-color: gray; padding: 5px; display: none;">
<p>Enter The Code Sent To Your Email</p>
<br><br>
<input id="code" type="text" placeholder="code">
<br><br>
<input type="button" id="codeSubmit" value="Verify">
</form>

<p id="response"></p>
<p onclick="window.location.reload()" id="back" style="display: none; cursor: pointer; color: blue; text-decoration: underline;">Back to home</p>
<noscript>Please Enable Javascript.</noscript>
Expand Down

0 comments on commit 89c75eb

Please sign in to comment.