-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
60 lines (58 loc) · 2.92 KB
/
index.php
File metadata and controls
60 lines (58 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>AMC | Welcome</title>
<!-- <link rel="stylesheet" type="text/css" href="css/font.css"> -->
<link rel="stylesheet" type="text/css" href="css/reg.css">
<?php include_once 'includes/head.php' ?>
</head>
<body>
<img src="images/homeback1.png" id="img1">
<div style="position: absolute; margin-left:56%; margin-top:175px;">
<img src="images/task.svg" width="430px" style="z-index: 1;">
</div>
<?php include_once 'includes/nav.php' ?>
<div class="content" style="margin-top: 160px; margin-left: 10px;">
<h1 style="margin-left: 30px; font-size: 64px;"><b> </b><br> PLACEMENT <br><b> MANAGEMENT </b><br> SYSTEM</h1> <br>
<!-- <img src="images/logo1.png" width="550px"> -->
</div>
<div id="users" style="z-index: 1; position: relative; margin-top: 130vh;">
<h1 align="center"><u>USERS</u></h1> <br> <br>
<a href="login.php" class="btn btn-outline-light my-2 my-sm-0" style="border-radius: 50px; border-width: 2px; font-weight: bold;" id="loginnav">LOGIN</a>
<div class="container">
<div class="card-group">
<div class="card" style="width: 400px; background: none; border: none;" align="center">
<img src="images/admin1.svg" class="card-img-top" alt="..." style="width: 400px;">
<div class="card-body">
<h2 class="card-title" align="center"><a href="login.php">Admin</a></h5>
<p class="card-text"><small class="text-muted">Placement Officer</small></p>
</div>
</div>
<div class="card" style="width: 400px; background: none; border: none;" align="center">
<img src="images/student1.svg" class="card-img-top" alt="..." style="width: 410px; margin-top: 10px;"> <br>
<div class="card-body">
<h2 class="card-title" align="center"><a href="login.php">User</a></h5>
<p class="card-text"><small class="text-muted">Student</small></p>
</div>
</div>
</div>
</div>
</div>
<div id="contact" style="z-index: 1; position: absolute; margin-left:2%; margin-top: 30vh;">
<div class="form-row">
<div class="form-group" style="margin-left:270px; margin-top: 200px;">
<h1>Contact Us</h1>
<p class="lead"> <i class="fas fa-mobile"></i> (+91) 776 09 13 134</p>
<p class="lead"> <i class="fas fa-at"></i> admin@gmail.com</p>
</div>
<div class="form-group" >
<img src="images/contact.svg" alt="..." style="width: 600px; margin-left: 30%; margin-top: -25%;">
</div>
</div>
</div>
<?php include_once 'includes/footer.php' ?>
</body>
</html>