-
Notifications
You must be signed in to change notification settings - Fork 4
/
register.html
31 lines (31 loc) · 1.29 KB
/
register.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<html class="no-js" lang>
<head>
<title>login</title>
<!-- <script src="https://unpkg.com/axios/dist/axios.min.js"></script> -->
<link rel="stylesheet" href="home.css">
<link rel="stylesheet" href="style.css">
</head>
<body style="border:2px solid #667eea;padding:5px;">
<h3>Register</h3>
<!-- <div class="input-container">
<input type="text" id="username" placeholder="Username">
</div> -->
<div class="input-container">
<input type="text" id="fullname" placeholder="Full Name">
</div>
<div class="input-container">
<input type="email" id="email" placeholder="Email">
</div>
<div class="input-container">
<input type="number" id="contact" placeholder="Contact Number">
</div>
<div class="input-container">
<input type="password" id="password" placeholder="Password">
</div>
<button id="register_btn" class="btn">Submit</button><br>
<p id="error_text" style="display: none;color:lightcoral"></p>
<a href="login.html" style="color:lightblue;font-size:10px;padding:10px;">Already have an account? Login here</a>
</body>
<script src="global.js"></script>
<script src="auth.js"></script>
</html>