0% found this document useful (0 votes)
13 views1 page

!doctype HTML

The document is an HTML page for a Face Recognition Attendance System at a university. It allows users to upload images, recognize their faces, and capture new faces via a camera, with specific instructions for students and teachers. The project is developed using Python, Flask, OpenCV, and Cloudinary.

Uploaded by

kunalbhoyekrunal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views1 page

!doctype HTML

The document is an HTML page for a Face Recognition Attendance System at a university. It allows users to upload images, recognize their faces, and capture new faces via a camera, with specific instructions for students and teachers. The project is developed using Python, Flask, OpenCV, and Cloudinary.

Uploaded by

kunalbhoyekrunal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html>
<head>
<title>Face Recognition</title>

</head>
<body>
<div id="header">
<img src="[Link]
Attendance-System/assets/22428774/bb426a99-bd13-410d-a21c-e402850af561" alt="Logo">
<h1>Welcome to our Face Detection System for our University Attendance
System</h1>
</div>

<div id="left-column">
<h2>Upload a new face as image</h2>
<h3>Click the button below to upload a new face as image</h3>
<p>NOTE: This will only work if you are not in our database</p>
<form action="/upload" method="post" enctype="multipart/form-data">
<input type="file" name="file">
<input type="submit" value="Upload">
</form>
<h2>Add yourself to the attendance list</h2>
<h3>Click the button below to recognize your face from the database</h3>
<p>NOTE: This will only work if you have already captured a face from the
camera</p>
<button id="recognize-button">Take Attendance</button>
<p>NOTE: If you are a teacher, please click the button below to login to
check attendance</p>
<button onclick="[Link]='/teacher_login'">Teacher
Login</button>
</div>

<div id="right-column">
<h2>Capture a new face from Camera</h2>
<h3>Click the button below to capture a new face from the camera</h3>
<p>NOTE: This will only work if you are not in our database</p>
<button id="capture-button">Capture</button>
<div class="video-container">
<iframe id="video" src="/video_feed"></iframe>
</div>
</div>

<div id="footer">
<p>Project by: Devesh & Kunal</p>
<p>Powered by: Python, Flask, OpenCV, Cloudinary</p>
</div>

</body>
</html>

You might also like