-
Notifications
You must be signed in to change notification settings - Fork 1
/
entry.php
63 lines (54 loc) · 1.77 KB
/
entry.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?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');">
<?php include('header.php'); ?>
<br>
<br>
<br>
<form action="quixlab-master/index.php" method="post">
<h1>Entry Test</h1>
<h2 align="center">Software (Java)</h2>
<br>
<fieldset>
<legend><span class="number">1</span>Basic Knowledge</legend>
<label for="q1">What is an IDE?</label>
<input type="text" id="q1" name="question_one">
<label for="q2">What are some popular Java UI?</label>
<input type="text" id="q2" name="question_two">
<label for="q3">Name 5 Design Patterns</label>
<input type="text" id="q3" name="question_three">
</fieldset>
<fieldset>
<legend><span class="number">2</span>Programming</legend>
<label for="bio">Generate the sentence, "Hello World!"</label>
<textarea id="bio" name="user_bio"></textarea>
</fieldset>
<legend><span class="number">3</span>Self-Assessment</legend>
<label for="self">How would you rate your programming skills out of 10?</label>
<select>
<?php
for ($i=1; $i<=10; $i++)
{
?>
<option value="<?php echo $i;?>"><?php echo $i;?></option>
<?php
}
?>
</select>
</fieldset>
<br>
<button class="button" type="submit">Submit Answers</button>
</form>
</div>
</body>
</html>