-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
49 lines (35 loc) · 1.31 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
<!DOCTYPE html>
<?php
?>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Index</title>
</head>
<body>
<div class="butoane1">
<ul>
<form>
<a href="login.php"><button class="Butoane" type="button" title="Login"><i class="fa fa-sign-in"></i></button></a>
<a href="signup.php"><button class="Butoane" type="button" title="Sign-Up"><i class="fa fa-address-card"></i></button></a>
</form>
</ul> </div>
<form action="search.php" method="post">
<div class="container">
<input id="SearchBar" type="text" name="Search" placeholder="Caută...">
<button id="Search" name="Submit" type="submit">
<i class="fa fa-search"></i></button>
<div class="box">
<p>It</p>
<input type="checkbox" class="checkbox" name="It" value='1'>
<p>Automatizari</p>
<input type="checkbox" class="checkbox" name="Automatizari" value='2'>
</div>
</div>
</form>
</body>
</html>