diff --git a/js/app.js b/js/app.js
index 1fdea279..6d783e27 100644
--- a/js/app.js
+++ b/js/app.js
@@ -13,6 +13,12 @@ $('.select2').select2({
theme: 'bootstrap4'
});
+// Initialize Select2 Elements
+$('.select2Tag').select2({
+ theme: 'bootstrap4',
+ tags: true
+});
+
// Initialize TinyMCE
tinymce.init({
selector: '.tinymce',
diff --git a/login.php b/login.php
index 0bb66c69..f78f6b54 100644
--- a/login.php
+++ b/login.php
@@ -310,6 +310,12 @@ if (isset($_POST['login'])) {
+
diff --git a/trip_add_modal.php b/trip_add_modal.php
index ee613ae3..112c5aff 100644
--- a/trip_add_modal.php
+++ b/trip_add_modal.php
@@ -53,7 +53,26 @@
-
+
@@ -72,8 +91,10 @@
1 AND user_archived_at IS NULL ORDER BY user_name ASC"
+ );
while ($row = mysqli_fetch_array($sql)) {
$user_id = intval($row['user_id']);
$user_name = nullable_htmlentities($row['user_name']);
diff --git a/trip_edit_modal.php b/trip_edit_modal.php
index 2a520c92..2ef42a5d 100644
--- a/trip_edit_modal.php
+++ b/trip_edit_modal.php
@@ -56,7 +56,27 @@
-
+