This repository was archived by the owner on Nov 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (101 loc) · 4.65 KB
/
index.html
File metadata and controls
110 lines (101 loc) · 4.65 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
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OSL VVCE - Visitor Logbook</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="app-container">
<header class="app-header">
<div class="logo-section">
<div class="logo-icon">
<i class="fas fa-code"></i>
</div>
<div class="logo-text">
<h1 class="org-name">OSL VVCE</h1>
<p class="tagline">Open Source Lab</p>
</div>
</div>
</header>
<main class="main-content">
<div class="form-container">
<div class="form-header">
<h2 class="form-title">
<i class="fas fa-clipboard-list"></i>
Visitor Logbook
</h2>
<p class="form-subtitle">Please fill out the form to check in</p>
</div>
<form class="visitor-form">
<div class="form-row">
<div class="input-group">
<label for="fullName">
<i class="fas fa-user"></i>
Full Name
</label>
<input type="text" id="fullName" name="fullName" placeholder="Enter your full name" required>
</div>
</div>
<div class="form-row">
<div class="input-group">
<label for="USN">
<i class="fas fa-id-card"></i>
USN / ID Number
</label>
<input type="text" id="USN" name="USN" placeholder="Enter your USN or ID" required>
</div>
</div>
<div class="form-row two-columns">
<div class="input-group">
<label for="CheckInTime">
<i class="fas fa-clock"></i>
Check-in Time
</label>
<input type="time" id="CheckInTime" name="CheckInTime" required>
</div>
<div class="input-group">
<label for="CheckOutTime">
<i class="fas fa-clock"></i>
Check-out Time
</label>
<input type="time" id="CheckOutTime" name="CheckOutTime">
</div>
</div>
<div class="form-row">
<div class="input-group">
<label for="reason">
<i class="fas fa-bullseye"></i>
Purpose of Visit
</label>
<textarea id="reason" name="reason" rows="3" placeholder="Describe the purpose of your visit..." required></textarea>
</div>
</div>
<div class="form-row">
<div class="input-group">
<label for="progress">
<i class="fas fa-tasks"></i>
Progress of Work
</label>
<textarea id="progress" name="progress" rows="3" placeholder="Describe your progress or work completed..."></textarea>
</div>
</div>
<div class="form-actions">
<button type="submit" class="submit-btn">
<i class="fas fa-sign-in-alt"></i>
Submit Entry
</button>
</div>
</form>
</div>
</main>
<footer class="app-footer">
<p>© 2025 Open Source Lab, VVCE. All rights reserved.</p>
</footer>
</div>
</body>
</html>