-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
executable file
·62 lines (46 loc) · 1.66 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>my web</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel='stylesheet prefetch' href='http://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900|RobotoDraft:400,100,300,500,700,900'>
<link rel='stylesheet prefetch' href='http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="pen-title">
<h1>App name</h1>
</div>
<div class="container">
<div class="card"></div>
<div class="card">
<h1 class="title">Student Register</h1>
<form method="post" action="">
<div class="input-container">
<input type="text" id="name" required="required"/>
<label for="">Name</label>
<div class="bar"></div>
</div>
<div class="input-container">
<input type="email" id="email" required="required"/>
<label for="">Email</label>
<div class="bar"></div>
</div>
<div class="input-container">
<input type="text" id="class" required="required"/>
<label for="">Class</label>
<div class="bar"></div>
</div>
<div class="input-container">
<input type="text" id="year" required="required"/>
<label for="">Year</label>
<div class="bar"></div>
</div>
<div class="button-container">
<button id="btngo"><span>Go</span></button>
</div>
</form>
</div>
</div>
</body>
</html>