Initial frontend form structure

This commit is contained in:
overplayed 2025-03-15 13:50:21 -04:00
parent e0de363c8a
commit c95570afd0
5 changed files with 34 additions and 0 deletions

0
assets/css/styles.css Normal file
View File

BIN
assets/img/ccah-logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

0
assets/js/main.js Normal file
View File

34
forms/questionnaire.html Normal file
View File

@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CCAH IT Assessment Questionnaire</title>
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="../assets/css/styles.css">
</head>
<body>
<div class="container mt-4">
<div class="text-center mb-4">
<img src="../assets/img/ccah-logo.png" alt="CCAH Logo" style="max-height:100px;">
</div>
<h3 class="text-center">CCAH IT Assessment Questionnaire</h3>
<form id="assessment-form">
<!-- Sample question block -->
<div class="mb-3">
<label class="form-label">Role/Title at CCAH</label>
<input type="text" class="form-control" name="role" required>
</div>
<!-- Add more questions similarly -->
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="../assets/js/main.js"></script>
</body>
</html>