From 9b7219d79b162ac5d69e40a81b51a61ad837e35c Mon Sep 17 00:00:00 2001 From: aleguy02 Date: Mon, 25 Aug 2025 11:23:18 -0400 Subject: [PATCH] Allow lowercase course inputs --- app/templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/index.html b/app/templates/index.html index 53972fb..65d7a18 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -160,7 +160,7 @@

Semester & View Options

updateButtonStates(); // Basic form validation - const CODE_RE = /^[A-Z]{3,4}\d{4}[A-Z]?/; + const CODE_RE = /^[A-Za-z]{3,4}\d{4}[A-Za-z]?/; document.getElementById('temp-form-name').addEventListener('submit', function(e) { e.preventDefault();