-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
49 lines (40 loc) · 1.93 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
?>
<!DOCTYPE html>
<html>
<head>
<title>Signup</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<!--<script src="https://unpkg.com/just-validate@latest/dist/just-validate.production.min.js" defer></script>-->
<script src="js/validation.js" defer></script>
<script type="text/javascript" src="js/movingButton.js" defer></script>
</head>
<body>
<section class="signup">
<div class="signup_box">
<div class="left">
<div class="top_link"><a href="login.php"><b>Login here</b></a></div>
<div class="contact">
<form action="process-signup.php" method="post" id="signup" name="form" novalidate>
<h3><b>SIGN UP</b></h3>
<input type="text" id="name" name="name" placeholder="username" onclick="resetBtn()">
<input type="email" id="email" name="email" placeholder="email" onclick="resetBtn()">
<input type="password" id="password" name="password" placeholder="password" onclick="resetBtn()">
<input type="password" id="password_confirmation" name="password_confirmation" placeholder="repeat password" onclick="resetBtn()">
<button class="submit" id="submit" onmouseover="onmouseOver()">Let's register</button>
</form>
</div>
</div>
<div class="right">
<div class="right-text">
<h2><b>CV Generator</b></h2>
<h5 >A Simple Way and Easier to generate your CV</h5>
</div>
<div class="right-inductor"><img src="" alt=""></div>
</div>
</div>
</section>
</body>
</html>