-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsignup.php
34 lines (31 loc) · 1.35 KB
/
signup.php
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
32
33
34
<link rel="stylesheet" href="style/signup.css">
<form id="regForm" action="includes/signup.inc.php" method="post">
<h1>🧬 Welcome to schedLab 🧬 </h1>
<h2>Register below</h2>
<!-- One "tab" for each step in the form: -->
<div class="tab">Name:
<p><input placeholder="First name..." oninput="this.className = ''" name="fname"></p>
<p><input placeholder="Last name..." oninput="this.className = ''" name="lname"></p>
</div>
<div class="tab">Contact Info:
<p><input placeholder="E-mail..." oninput="this.className = ''" name="email"></p>
</div>
<div class="tab">Login Info:
<p><input placeholder="Username..." oninput="this.className = ''" name="username"></p>
<p><input placeholder="Password..." oninput="this.className = ''" name="password" type="password" ></p>
</div>
<div style="overflow:auto;">
<div style="float:right;">
<button class="btnForm" type="button" id="prevBtn" onclick="nextPrev(-1)">Previous</button>
<button class="btnForm" type="button" id="nextBtn" onclick="nextPrev(1)">Next</button>
</div>
</div>
<!-- Circles which indicates the steps of the form: -->
<div style="text-align:center;margin-top:40px;">
<span class="step"></span>
<span class="step"></span>
<span class="step"></span>
<span class="step"></span>
</div>
</form>
<script src="scripts/signup.js"></script>