forked from gayuru/eLab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.php
More file actions
81 lines (70 loc) · 2.96 KB
/
signup.php
File metadata and controls
81 lines (70 loc) · 2.96 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php session_start(); ?>
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Form</title>
<link href='https://fonts.googleapis.com/css?family=Nunito:400,300' rel='stylesheet' type='text/css'>
<?php include('link_rel.php'); ?>
<link rel="stylesheet" href="css/signup.css">
</head>
<body>
<div class="container-login100" style="background-image: url('img/bg-01.jpg');">
<div class="wrap-login100 p-l-55 p-r-55 p-t-80 p-b-30">
<?php include('header.php'); ?>
<br>
<br>
<br>
<form action="entry.php" method="post">
<h1>Sign Up</h1>
<fieldset>
<legend><span class="number">1</span>Your basic info</legend>
<label for="name">Name:</label>
<input type="text" id="name" name="user_name">
<label for="mail">Email:</label>
<input type="email" id="mail" name="user_email">
<label for="password">Password:</label>
<input type="password" id="password" name="user_password">
</fieldset>
<fieldset>
<legend><span class="number">2</span>Your profile</legend>
<label for="bio">Biography:</label>
<textarea id="bio" name="user_bio"></textarea>
</fieldset>
<fieldset>
<label for="job">Skill Field:</label>
<select id="job" name="user_job">
<optgroup label="Science">
<option value="frontend_developer">Biology</option>
<option value="php_developor">Chemistry</option>
<option value="python_developer">Physics</option>
<option value="rails_developer">Mathematics</option>
<option value="web_designer">Medical</option>
<option value="WordPress_developer">Software</option>
</optgroup>
<optgroup label="Art">
<option value="Android_developer">Language</option>
<option value="iOS_developer">Writing</option>
<option value="mobile_designer">Architecture</option>
</optgroup>
<optgroup label="Business">
<option value="business_owner">Commerce</option>
<option value="freelancer">Accounting</option>
</optgroup>
<optgroup label="Other">
<option value="secretary">Fine Arts</option>
<option value="maintenance">Dancing</option>
</optgroup>
</select>
<label>Interests:</label>
<input type="checkbox" id="development" value="interest_development" name="user_interest"><label class="light" for="development">Teaching</label><br>
<input type="checkbox" id="design" value="interest_design" name="user_interest"><label class="light" for="design">Learning</label><br>
</fieldset>
<br>
<button class="button" type="submit">Sign Up</button>
</form>
</div>
</div>
</body>
</html>