Untitled

 avatar
unknown
plain_text
6 months ago
1.1 kB
3
Indexable
<!DOCTYPE html>
<html lang="id">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Absensi Digital</title>
    <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body>
    <div class="container">
        <h1>Form Absensi Siswa</h1>
        <form method="POST">
            <label for="student_name">Nama Siswa:</label>
            <input type="text" id="student_name" name="student_name" required>

            <label for="class_name">Kelas:</label>
            <input type="text" id="class_name" name="class_name" required>

            <label for="major">Jurusan:</label>
            <input type="text" id="major" name="major" required>

            <label for="nik">NIK:</label>
            <input type="text" id="nik" name="nik" required>

            <label for="school">Asal Sekolah:</label>
            <input type="text" id="school" name="school" required> <!-- Input untuk asal sekolah -->

            <button type="submit">Kirim</button>
        </form>
    </div>
</body>
</html>
Editor is loading...
Leave a Comment