-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (108 loc) · 3.95 KB
/
index.html
File metadata and controls
108 lines (108 loc) · 3.95 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<title>FaceTech</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav>
<div class="logo">
<a href="#">FaceTech</a>
</div>
<ul class="nav-links">
<li><a href="#team">Our Team</a></li>
<li><a href="https://github.com/Praneetha29/FaceTech">Project</a></li>
<li><a href="#">Login</a></li>
</ul>
</nav>
<section class="hero">
<div class="hero-content">
<h1>Welcome to FaceTech</h1>
<p>Taking attendance in a class with more than 100 students can be a challenging and time-consuming task for teachers. <br>
It may require them to manually call out each student's name and mark their attendance on a paper or an attendance register. <br>
THIS IS WHERE OUR SOLUTION COMES IN!</p>
<a href="#input" class="btn">Experience Our Project</a>
</div>
<div class="hero-illustration">
<img src=IMAGES/6597446.jpg alt="Illustration">
</div>
</section>
<section id="input"class="inputStudentEntry">
<div class="hero-content">
<form action="http://127.0.0.1:5009/viewclassData/">
<label for="id">Class ID you want to search for</label><br>
<input type="number" id="id" name="id"><br>
<br>
<input type="submit" value="Submit">
</form>
</div>
</section>
<section class="viewClassData">
<div class="hero-content">
<form action="http://127.0.0.1:5009/studententry/">
<label for="roll">Roll Number</label><br>
<input type="number" id="roll" name="Roll"><br>
<label for="name">Student Name</label><br>
<input type="text" id="name" name="Name"><br>
<label for="inputImage">Link Image</label><br>
<input type="file" id="inputImage" name="inputImage"><br><br>
<input type="text" id="link" name="Link"><br>
<br><br>
<input type="submit" value="Submit">
</form>
</div>
</section>
<section class="viewStudentData">
<div class="hero-content">
<form action="http://127.0.0.1:5009/viewstudentData/">
<label for="id">Roll Number you want to search for</label><br>
<input type="number" id="id" name="id"><br>
<br>
<input type="submit" value="Submit">
</form>
</div>
</section>
<section id="team" class="team">
<h2>Our Team</h2>
<div class="team-carousel">
<div class="card">
<img src=IMAGES/Pizza.jpg alt="Team Member">
<h3>Sai Praneetha</h3>
<p>Worked on designing the application's front end along with the Product's documentation.</p>
</div>
<div class="card">
<img src=IMAGES/pramod.jpg alt="Team Member">
<h3>Pramod Goyal</h3>
<p>Worked on the machine learning model responsible for the recognition of the face and built the interface in python.</p>
</div>
<div class="card">
<img src=IMAGES/trisha.jpg alt="Team Member">
<h3>Trisha Chatterjee</h3>
<p>Worked on data accumulation and database management.</p>
</div>
<div class="card">
<img src=IMAGES/jay.jpg alt="Team Member">
<h3>Jay Solanki</h3>
<p>Worked on data accumulation and database management.</p>
</div>
<div class="card">
<img src=IMAGES/sa.jpg alt="Team Member">
<h3>Sayantan Chatterjee</h3>
<p>Worked on the backend of the application and explored different APIs to compile the overall project.</p>
</div>
</div>
</section>
<section class="project">
<div class="project-content">
<h2>Experience Our Project</h2>
<p>Our solution automates the manual and time-consuming process of taking attendance.<br>We have developed an attendance management system that utilizes an automated face detection system based on a CNN-based network called the Siamese network.</p>
<a href="https://github.com/Praneetha29/FaceTech" class="btn">Go to project</a>
</div>
</section>
<footer>
<p>Automated attendance system @Praneetha, 2023</p>
</footer>
</body>
</html>