www.signupgenius.com
Open in
urlscan Pro
2606:4700:10::6816:839
Public Scan
Submitted URL: https://m.signupgenius.com/#!/showSignUp/10c094faaac2ba1f8c61-bohemia
Effective URL: https://www.signupgenius.com/go/10c094faaac2ba1f8c61-bohemia
Submission: On November 22 via manual from US — Scanned from DE
Effective URL: https://www.signupgenius.com/go/10c094faaac2ba1f8c61-bohemia
Submission: On November 22 via manual from US — Scanned from DE
Form analysis
1 forms found in the DOMPOST /index.cfm?go=s.PreProcessSignup
<form action="/index.cfm?go=s.PreProcessSignup" method="post" id="signupForm" class="ng-pristine ng-valid">
<div class="spacer-sm"></div>
<div data-ng-controller="topAdController" style="z-index:9000" class="ng-scope">
<div align="center" id="signuptop_dynamicbanner" network="sortable" platform="desktop" category="signups" section="sheet" type="dynamicbanner" themeid="448" position="top" class="ng-isolate-scope"><span>
<div class="ad-tag" data-ad-name="Desktop_SignUps_Sheet_970x90_Top" data-ad-size="970x90" data-ad-refresh="time 30s" data-ad-processed="1" id="Desktop_SignUps_Sheet_970x90_Top_0" style="min-height: 90px;"></div>
<script type="text/javascript">
(deployads = window.deployads || []).push({});
</script>
</span></div>
</div>
<div class="spacer-sm"></div>
<div class="container ng-scope" style="min-width:970px !important;" data-ng-controller="sideAdLayoutController" id="sugBasicWrap">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<!-- ngIf: objConfig.showleft == true -->
<td data-ng-if="objConfig.showleft == true" valign="top" width="300" data-ng-class="[{thickCol: !objConfig.showthin, thinCol: objConfig.showthin}]" class="ng-scope [object Object]">
<div data-ng-class="[{thickCol: !objConfig.showthin, thinCol: objConfig.showthin}]" style="display:inline-block;" class="[object Object]"></div>
<!-- ngIf: !objConfig.showsecondary -->
<div data-ng-if="!objConfig.showsecondary" class="ng-scope">
<div id="sticky-anchor-ul"></div>
<div id="sticky-ul">
<div data-ng-controller="sideAdController" class="ng-scope">
<!-- ngIf: objConfig.showleft && !objConfig.showthin -->
<div align="center" data-ng-if="objConfig.showleft && !objConfig.showthin" id="signup_left_dynamicskyscraper" network="sortable" platform="desktop" category="signups" section="sheet" type="dynamicskyscraper" themeid="448"
position="left" class="ng-scope ng-isolate-scope"><span>
<div class="ad-tag" data-ad-name="Desktop_SignUps_Sheet_300x600_Left" data-ad-size="300x600" data-ad-refresh="time 30s" data-ad-processed="1" id="Desktop_SignUps_Sheet_300x600_Left_0" style="min-height: 600px;"></div>
<script type="text/javascript">
(deployads = window.deployads || []).push({});
</script>
</span></div><!-- end ngIf: objConfig.showleft && !objConfig.showthin -->
<!-- ngIf: objConfig.showleft && objConfig.showthin -->
</div>
<!-- ngIf: objConfig.shownoadlink && !objConfig.showsecondary -->
</div>
</div><!-- end ngIf: !objConfig.showsecondary -->
<!-- ngIf: objConfig.showsecondary -->
<!-- ngIf: objConfig.showsecondary -->
</td><!-- end ngIf: objConfig.showleft == true -->
<!-- ngIf: objConfig.showleft == true -->
<td data-ng-if="objConfig.showleft == true" width="40" class="ng-scope"><img src="/images/spacer.gif" width="40" height="1"></td><!-- end ngIf: objConfig.showleft == true -->
<td class="SUGmain" valign="top" style="position:relative" id="signupcontainer">
<link rel="stylesheet" href="/css/angular/ngmodal-v1.css">
<style>
/* Still current */
.tb-shadow {
filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.45));
}
.tb-shadow-safari {
-webkit-filter: drop-shadow(0 12px 1.5em rgba(0, 0, 0, 0.35));
/*Fix for Safari's harsh shadow's*/
}
.tb-shadow-half {
filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.45));
}
t .tb-shadow-half-safari {
-webkit-filter: drop-shadow(0 6px 0.75em rgba(0, 0, 0, 0.35));
/*Fix for Safari's harsh shadow's*/
}
.rendering {
image-rendering: auto;
}
</style>
<script>
(function() {
var desktopSignup = function($scope, $timeout) {
$scope.image1 = {};
$scope.image2 = {};
$scope.image3 = {};
var ua = navigator.userAgent;
/* use Chrome's shadow settings */
$scope.tbshadow = "tb-shadow";
$scope.tbshadowhalf = "tb-shadow-half";
if ((ua.indexOf("Safari") > -1) && !(ua.indexOf("Chrome") > -1)) {
$scope.tbshadow = "tb-shadow-safari";
$scope.tbshadowhalf = "tb-shadow-safari";
}
//Displays the MaskView. It's MaskViewController is at the base of this document.
$scope.displayMaskView = function(originalImageData, MaskViewTitle, imageKey, aspectRatio, coords) {
$scope.MaskOpen = true;
var confirmationWindow = $modal.open({
templateUrl: '/view/tools/prothemeMaskwindow.html?v1.6',
controller: MaskViewController,
resolve: {
originalImageData: function() {
return originalImageData;
},
MaskViewTitle: function() {
return MaskViewTitle;
},
aspectRatio: function() {
return aspectRatio;
},
coords: function() {
return coords;
}
}
});
confirmationWindow.result.then(function(result) {
$scope.MaskOpen = false; // Can spawn a new Mask window
if (result.success) {
$scope.createCoordinates(imageKey, result.coordinates, originalImageData);
}
});
};
$scope.getImageSize = function(key, url) {
var image = new Image();
image.src = url;
image.onload = function() {
/* fix for images that do not have images set */
$scope[key].IMAGEWIDTH = image.width;
$scope[key].IMAGEHEIGHT = image.height;
$scope.createCoordinates(key, $scope[key].IMAGECROPCOORDS);
}
}
// This method figures out the placement, and scale of the image inside its container / mask.
$scope.createCoordinates = function(imageKey, coordinates) {
//Vertical align value for Templates 1 and 2 -tb 2/15/17
$scope[imageKey].coords = coordinates;
$scope[imageKey].containerwidth = $('#' + imageKey).width();
$scope[imageKey].containerheight = $('#' + imageKey).height();
$scope[imageKey].x1 = $scope[imageKey].coords[0];
$scope[imageKey].y1 = $scope[imageKey].coords[1];
$scope[imageKey].x2 = $scope[imageKey].coords[2];
$scope[imageKey].y2 = $scope[imageKey].coords[3];
$scope[imageKey].coordw = $scope[imageKey].coords[4];
$scope[imageKey].coordh = $scope[imageKey].coords[5];
//set coordinates
$scope[imageKey].width = $scope[imageKey].IMAGEWIDTH;
$scope[imageKey].height = $scope[imageKey].IMAGEHEIGHT;
$scope[imageKey].left = ($scope[imageKey].containerwidth / $scope[imageKey].coordw) * $scope[imageKey].x1 * -1;
$scope[imageKey].top = ($scope[imageKey].containerheight / $scope[imageKey].coordh) * $scope[imageKey].y1 * -1;
$scope[imageKey].newwidth = ($scope[imageKey].containerwidth / $scope[imageKey].coordw * $scope[imageKey].width);
$scope[imageKey].newheight = ($scope[imageKey].containerheight / $scope[imageKey].coordh * $scope[imageKey].height);
}
$scope.setupCoords = function() {
if ($scope.image1 && $scope.image1.IMAGECROPCOORDS) {
if ($scope.image1.IMAGEHEIGHT < 2 || $scope.image1.IMAGEWIDTH < 2) {
/* if the image size is missing, load the image to get its size and continue there */
var imagesize = $scope.getImageSize('image1', $scope.image1.THEMEIMAGE)
} else {
$scope.createCoordinates('image1', $scope.image1.IMAGECROPCOORDS);
}
}
if ($scope.image2 && $scope.image2.IMAGECROPCOORDS) {
if ($scope.image2.IMAGEHEIGHT < 2 || $scope.image2.IMAGEWIDTH < 2) {
/* if the image size is missing, load the image to get its size and continue there */
var imagesize = $scope.getImageSize('image2', $scope.image2.THEMEIMAGE);
} else {
$scope.createCoordinates('image2', $scope.image2.IMAGECROPCOORDS);
}
}
if ($scope.image3 && $scope.image3.IMAGECROPCOORDS) {
if ($scope.image3.IMAGEHEIGHT < 2 || $scope.image3.IMAGEWIDTH < 2) {
/* if the image size is missing, load the image to get its size and continue there */
var imagesize = $scope.getImageSize('image3', $scope.image3.THEMEIMAGE);
} else {
$scope.createCoordinates('image3', $scope.image3.IMAGECROPCOORDS);
}
}
}
$scope.setupCoords();
//** Auto Rescales the crops when the window resizes **//
//
//This technique can be used for responsive headers
$(window).resize(function() {
$timeout(function() {
$scope.setupCoords();
}, 1);
});
// make fundlyurl available as an angular variable for template headers
$scope.fundlyurl = '';
};
//allows angular to work with script minifiers
desktopSignup.$inject = ['$scope', '$timeout'];
//register controller with AngularJS
angular.module('SUGApp').controller('desktopSignup', desktopSignup);
}());
</script>
<div ng-controller="desktopSignup" class="ng-scope">
<style>
.col-body-100 {
margin-top: 1.5rem;
width: 100%
}
</style>
<div class="col-body-100 SUGmain">
<div class="SUGbold">BOHEMIA Cares</div>
<h1 class="SUGHeaderText">BOHEMIA Cares Presents A Christmas Gala</h1>
<p style="text-align: inherit;">Please review the available slots below and click on the button to sign up.</p>
<p style="text-align: inherit;">Director Tucker will contact you to confirm your volunteer assignment. Thank you!! </p> <strong>Date: </strong>12/03/2022 (Sat.)<p></p>
<table>
<tbody>
<tr>
<td><strong>Created by:</strong> </td>
<td valign="top">
<profile-pic
dataset="{"id":1,"value":"SJ","type":"initials","resource":{"small":"","medium":"","large":"","text":"SJ","xlarge":""}}"
color="#CC0000" bgcolor="#FFFFFF" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #FFFFFF !important; color: #CC0000 !important;"> SJ <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vaafb692b2aea4879b33c060e79fe94621666317369993"
integrity="sha512-0ahDYl866UMhKuYcW078ScMalXqtFJggm7TmlUtp0UlD4eQk0Ixfnm5ykXKvGJNFjLMoortdseTfsRT8oCfgGA=="
data-cf-beacon="{"rayId":"76e4053829019b5b","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.11.3","si":100}" crossorigin="anonymous"
class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td> Shaylonda Jackson</td>
<td>
<div style="padding-top:
2px;"> <a href="https://www.signupgenius.com/index.cfm?go=c.help&eid=08C7CBD9FFCDFC600C&cs=09CBBAD88FBF8B6C7B7964735BB59BCEFDB5&id=38956196&urlID=10C094FAAAC2BA1F8C61-bohemia" class="SUGlink"><span class="glyphicon glyphicon-envelope" style="font-size:15px;"><span></span></span></a>
</div>
</td>
</tr>
</tbody>
</table>
<div class="row">
<div class="col-md-12">
<div style="margin-top:18px; padding-top:18px;border-top: 1px solid #FFFFFF;"> Already signed up? You can
<a href="https://www.signupgenius.com/index.cfm?go=s.EditHelp&urlid=10c094faaac2ba1f8c61-bohemia" class="SUGlink">change your sign up</a>. </div>
</div>
</div>
</div>
<br>
</div>
<script>
// header/footer updates for the menu dropdown not to overlay ads
(function() {
$(document).ready(function() {
$('.nav-dropdown-menu').on('show.bs.dropdown', function() {
$('#SUGContainer').addClass('open-horizontal');
});
$('.nav-dropdown-menu').on('hide.bs.dropdown', function() {
$('#SUGContainer').removeClass('open-horizontal');
});
});
})();
</script>
<script>
<!--
// This allows you to check the box using the entire button
function checkTheBox(siid) {
var thischeck = document.getElementById('checkbox' + siid);
if (thischeck.checked == true) {
thischeck.checked = false;
} else {
thischeck.checked = true;
}
};
// This resets the hidden field called 'siids' everytime you click a button
function checkLIST(siid) {
var cboxes = document.getElementsByName('siid');
var idlist = '';
var restrict = restictQuantity(siid);
if (!restrict) {
for (i = 0; i < cboxes.length; i++) {
if (cboxes[i].checked == true) {
var tempval = idlist;
if (tempval == '') {
var idlist = cboxes[i].value;
} else {
var idlist = tempval + ',' + cboxes[i].value;
}
}
}
document.getElementById('siids').value = idlist;
saveSelectedToStorage(idlist);
}
};
function restictQuantity(siid) {
var result = false;
return result;
};
/** temporary storage for selected idlist **/
function saveSelectedToStorage(idlist) {
if (typeof(Storage) !== "undefined") {
window.sessionStorage.siidList = idlist;
}
};
/** this is specific to selected slot IDs **/
window.onload = function() {
window.sessionStorage.removeItem("calView");
if (typeof(Storage) !== "undefined" && ('siidList' in window.sessionStorage) && window.sessionStorage.siidList.toString().length > 0) {
var arrSiid = window.sessionStorage.siidList.split(',');
for (var i in arrSiid) {
var thischeck = document.getElementById('checkbox' + arrSiid[i]);
if (!thischeck.checked) thischeck.checked = true;
}
}
};
/** this is specific to selected slot IDs **/
window.onbeforeunload = function(e) {
if (typeof(Storage) !== "undefined" && ('siidList' in window.sessionStorage) && window.sessionStorage.siidList.toString().length > 0) {
if (!('calView' in window.sessionStorage) || !window.sessionStorage.calView) {
window.sessionStorage.removeItem("siidList");
}
}
};
/** This is alternative event for mobile Safari and mobile Chrome **/
window.onpagehide = function(e) {
if (typeof(Storage) !== "undefined" && ('siidList' in window.sessionStorage) && window.sessionStorage.siidList.toString().length > 0) {
if (!('calView' in window.sessionStorage) || !window.sessionStorage.calView) {
window.sessionStorage.removeItem("siidList");
}
}
};
/** this is specific to selected slot IDs and calendar view **/
function setCalView() {
window.sessionStorage.calView = true;
};
// End
-->
</script>
<style>
.link_cursor {
cursor: pointer;
}
.popover-content {
color: #000 !important;
}
.disabled {
opacity: .5;
}
</style>
<script>
$(document).ready(function() {
// $('[data-toggle="tooltip"]').tooltip();
try {
$('[data-toggle="popover"]').popover();
} catch (e) {}
});
</script>
<input name="URLID" id="URLID" type="hidden" value="10C094FAAAC2BA1F8C61-bohemia">
<input name="useMultiple" type="hidden" value="true">
<input name="siids" id="siids" type="hidden" value="">
<table width="100%" cellspacing="0" align="center" class="SUGtableouter">
<tbody>
<tr>
<td bgcolor="#FFFFFF" height="35" class="SUGtableheader">Time <span class="SUGheaddate">(CST)</span></td>
<td bgcolor="#FFFFFF" height="35" class="SUGtableheader"> Available Slot <span class="SUGheaddate"></span>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 3:30pm - 4:30pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Set-Up Committee (7)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">1 of 7 slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"KB","type":"initials","resource":{"small":"","medium":"","large":"","text":"KB","xlarge":""}}"
color="#CC0000" bgcolor="#FFFFFF" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #FFFFFF !important; color: #CC0000 !important;"> KB <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vaafb692b2aea4879b33c060e79fe94621666317369993"
integrity="sha512-0ahDYl866UMhKuYcW078ScMalXqtFJggm7TmlUtp0UlD4eQk0Ixfnm5ykXKvGJNFjLMoortdseTfsRT8oCfgGA=="
data-cf-beacon="{"rayId":"76e4053829019b5b","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.11.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Kyra Bell </span>
</td>
</tr>
</tbody>
</table>
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1191979699);checkLIST(1191979699);">Sign Up </span>
<input name="siid" type="checkbox" value="1191979699" id="checkbox1191979699" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1191979699);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 4:30pm - 5:15pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Greeter (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">2 of 5 slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"YW","type":"initials","resource":{"small":"","medium":"","large":"","text":"YW","xlarge":""}}"
color="#CC0000" bgcolor="#FFFFFF" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #FFFFFF !important; color: #CC0000 !important;"> YW <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vaafb692b2aea4879b33c060e79fe94621666317369993"
integrity="sha512-0ahDYl866UMhKuYcW078ScMalXqtFJggm7TmlUtp0UlD4eQk0Ixfnm5ykXKvGJNFjLMoortdseTfsRT8oCfgGA=="
data-cf-beacon="{"rayId":"76e4053829019b5b","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.11.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Yolonda Withers </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"TH","type":"initials","resource":{"small":"","medium":"","large":"","text":"TH","xlarge":""}}"
color="#CC0000" bgcolor="#FFFFFF" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #FFFFFF !important; color: #CC0000 !important;"> TH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vaafb692b2aea4879b33c060e79fe94621666317369993"
integrity="sha512-0ahDYl866UMhKuYcW078ScMalXqtFJggm7TmlUtp0UlD4eQk0Ixfnm5ykXKvGJNFjLMoortdseTfsRT8oCfgGA=="
data-cf-beacon="{"rayId":"76e4053829019b5b","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.11.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Tammy Hull-Richardson </span>
</td>
</tr>
</tbody>
</table>
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1192036262);checkLIST(1192036262);">Sign Up </span>
<input name="siid" type="checkbox" value="1192036262" id="checkbox1192036262" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1192036262);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 5:00pm - 5:45pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Bathroom Attendees (4)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1192014070);checkLIST(1192014070);">Sign Up </span>
<input name="siid" type="checkbox" value="1192014070" id="checkbox1192014070" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1192014070);">
</span>
</div>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Auction Host (6)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">1 of 6 slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"CH","type":"initials","resource":{"small":"","medium":"","large":"","text":"CH","xlarge":""}}"
color="#CC0000" bgcolor="#FFFFFF" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #FFFFFF !important; color: #CC0000 !important;"> CH <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vaafb692b2aea4879b33c060e79fe94621666317369993"
integrity="sha512-0ahDYl866UMhKuYcW078ScMalXqtFJggm7TmlUtp0UlD4eQk0Ixfnm5ykXKvGJNFjLMoortdseTfsRT8oCfgGA=="
data-cf-beacon="{"rayId":"76e4053829019b5b","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.11.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Cynthia Hill </span>
</td>
</tr>
</tbody>
</table>
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1192018236);checkLIST(1192018236);">Sign Up </span>
<input name="siid" type="checkbox" value="1192018236" id="checkbox1192018236" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1192018236);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 5:15pm - 6:00pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Greeter (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">4 of 5 slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SD","type":"initials","resource":{"small":"","medium":"","large":"","text":"SD","xlarge":""}}"
color="#CC0000" bgcolor="#FFFFFF" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #FFFFFF !important; color: #CC0000 !important;"> SD <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vaafb692b2aea4879b33c060e79fe94621666317369993"
integrity="sha512-0ahDYl866UMhKuYcW078ScMalXqtFJggm7TmlUtp0UlD4eQk0Ixfnm5ykXKvGJNFjLMoortdseTfsRT8oCfgGA=="
data-cf-beacon="{"rayId":"76e4053829019b5b","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.11.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Sannecia Davis </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SC","type":"initials","resource":{"small":"","medium":"","large":"","text":"SC","xlarge":""}}"
color="#CC0000" bgcolor="#FFFFFF" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #FFFFFF !important; color: #CC0000 !important;"> SC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vaafb692b2aea4879b33c060e79fe94621666317369993"
integrity="sha512-0ahDYl866UMhKuYcW078ScMalXqtFJggm7TmlUtp0UlD4eQk0Ixfnm5ykXKvGJNFjLMoortdseTfsRT8oCfgGA=="
data-cf-beacon="{"rayId":"76e4053829019b5b","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.11.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Shawnitha Cooper (3) </span>
<br>
<div class="SUGMemberComment">SIU Team</div>
</td>
</tr>
</tbody>
</table>
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1193424768);checkLIST(1193424768);">Sign Up </span>
<input name="siid" type="checkbox" value="1193424768" id="checkbox1193424768" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1193424768);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 5:45pm - 6:30pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Bathroom Attendees (4)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1192271946);checkLIST(1192271946);">Sign Up </span>
<input name="siid" type="checkbox" value="1192271946" id="checkbox1192271946" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1192271946);">
</span>
</div>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Greeter (5)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">3 of 5 slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RC","type":"initials","resource":{"small":"","medium":"","large":"","text":"RC","xlarge":""}}"
color="#CC0000" bgcolor="#FFFFFF" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #FFFFFF !important; color: #CC0000 !important;"> RC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vaafb692b2aea4879b33c060e79fe94621666317369993"
integrity="sha512-0ahDYl866UMhKuYcW078ScMalXqtFJggm7TmlUtp0UlD4eQk0Ixfnm5ykXKvGJNFjLMoortdseTfsRT8oCfgGA=="
data-cf-beacon="{"rayId":"76e4053829019b5b","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.11.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Ryan Carr </span>
<br>
<div class="SUGMemberComment">Ryan Carr</div>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"SB","type":"initials","resource":{"small":"","medium":"","large":"","text":"SB","xlarge":""}}"
color="#CC0000" bgcolor="#FFFFFF" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #FFFFFF !important; color: #CC0000 !important;"> SB <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vaafb692b2aea4879b33c060e79fe94621666317369993"
integrity="sha512-0ahDYl866UMhKuYcW078ScMalXqtFJggm7TmlUtp0UlD4eQk0Ixfnm5ykXKvGJNFjLMoortdseTfsRT8oCfgGA=="
data-cf-beacon="{"rayId":"76e4053829019b5b","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.11.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Shelia Boyd </span>
</td>
</tr>
</tbody>
</table>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RM","type":"initials","resource":{"small":"","medium":"","large":"","text":"RM","xlarge":""}}"
color="#CC0000" bgcolor="#FFFFFF" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #FFFFFF !important; color: #CC0000 !important;"> RM <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vaafb692b2aea4879b33c060e79fe94621666317369993"
integrity="sha512-0ahDYl866UMhKuYcW078ScMalXqtFJggm7TmlUtp0UlD4eQk0Ixfnm5ykXKvGJNFjLMoortdseTfsRT8oCfgGA=="
data-cf-beacon="{"rayId":"76e4053829019b5b","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.11.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Regina Murray </span>
</td>
</tr>
</tbody>
</table>
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1192271951);checkLIST(1192271951);">Sign Up </span>
<input name="siid" type="checkbox" value="1192271951" id="checkbox1192271951" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1192271951);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 6:30pm - 7:00pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Bathroom Attendees (4)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1192057202);checkLIST(1192057202);">Sign Up </span>
<input name="siid" type="checkbox" value="1192057202" id="checkbox1192057202" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1192057202);">
</span>
</div>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Auction Host (6)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1192018238);checkLIST(1192018238);">Sign Up </span>
<input name="siid" type="checkbox" value="1192018238" id="checkbox1192018238" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1192018238);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 6:45pm - 7:30pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Dinner Servers (12)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1193420310);checkLIST(1193420310);">Sign Up </span>
<input name="siid" type="checkbox" value="1193420310" id="checkbox1193420310" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1193420310);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 7:00pm - 7:30pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Bathroom Attendees (4)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1192041237);checkLIST(1192041237);">Sign Up </span>
<input name="siid" type="checkbox" value="1192041237" id="checkbox1192041237" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1192041237);">
</span>
</div>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Auction Host (6)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1193421125);checkLIST(1193421125);">Sign Up </span>
<input name="siid" type="checkbox" value="1193421125" id="checkbox1193421125" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1193421125);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 7:30pm - 8:00pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Bathroom Attendees (4)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1192041244);checkLIST(1192041244);">Sign Up </span>
<input name="siid" type="checkbox" value="1192041244" id="checkbox1192041244" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1192041244);">
</span>
</div>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Auction Host (6)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1193421124);checkLIST(1193421124);">Sign Up </span>
<input name="siid" type="checkbox" value="1193421124" id="checkbox1193421124" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1193421124);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 7:30pm - 8:15pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Dinner Servers (12)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1193420317);checkLIST(1193420317);">Sign Up </span>
<input name="siid" type="checkbox" value="1193420317" id="checkbox1193420317" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1193420317);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:00pm - 8:45pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Bathroom Attendees (4)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1192041229);checkLIST(1192041229);">Sign Up </span>
<input name="siid" type="checkbox" value="1192041229" id="checkbox1192041229" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1192041229);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 8:45pm - 9:30pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">VIP Guest Host (4)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1193421585);checkLIST(1193421585);">Sign Up </span>
<input name="siid" type="checkbox" value="1193421585" id="checkbox1193421585" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1193421585);">
</span>
</div>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Auction Host (6)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1193421586);checkLIST(1193421586);">Sign Up </span>
<input name="siid" type="checkbox" value="1193421586" id="checkbox1193421586" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1193421586);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 9:00pm - 9:45pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Bathroom Attendees (4)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1192055125);checkLIST(1192055125);">Sign Up </span>
<input name="siid" type="checkbox" value="1192055125" id="checkbox1192055125" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1192055125);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td class="SUGtable" valign="top" style="padding-top:10px;padding-bottom:10px;"><span class="SUGbigbold"> 10:00pm - 10:45pm </span>
</td>
<td class="SUGtable" valign="top">
<table width="100%" cellpadding="2" cellspacing="0">
<!-- end output loop w/ group="itemID" -->
<tbody>
<tr>
<td valign="top" width="48%" style="padding-top:10px;">
<p class="SUGbigbold hrow">Clean-up Committee (12)</p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">1 of 12 slots filled</span>
</div>
<!--<div><span class="glyphicon glyphicon-ok-sign SUGicon"></span>-->
<!-- display participant block -->
<table>
<tbody>
<tr>
<td valign="top" width="36" style="padding-top:3px;padding-bottom:3px;">
<profile-pic
dataset="{"id":1,"value":"RC","type":"initials","resource":{"small":"","medium":"","large":"","text":"RC","xlarge":""}}"
color="#CC0000" bgcolor="#FFFFFF" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<style class="ng-scope">
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.bs {
background-color: #FFF590;
color: #F68B1C;
}
}
</style>
<div style="display: inline-block;" class="ng-scope">
<!--[if IE 9]><div class="ppic ppic-{{imgsize}}" style="background-color: #FFF590; color: #F68B1C"> {{value}} <![endif]-->
<!--[if !IE]><!-->
<div class="ppic ppic-30 bs" style="background-color: #FFFFFF !important; color: #CC0000 !important;"> RC <!--<![endif]-->
</div>
<div data-ng-show="link" class="ppic ppic-edit-30 ng-hide">
<a href="https://www.signupgenius.com/index.cfm?go=m.editprofile" alt="Edit profile image"><span class="glyphicon glyphicon-camera"></span></a>
</div>
</div>
<script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vaafb692b2aea4879b33c060e79fe94621666317369993"
integrity="sha512-0ahDYl866UMhKuYcW078ScMalXqtFJggm7TmlUtp0UlD4eQk0Ixfnm5ykXKvGJNFjLMoortdseTfsRT8oCfgGA=="
data-cf-beacon="{"rayId":"76e4053829019b5b","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2022.11.3","si":100}"
crossorigin="anonymous" class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Ryan Carr </span>
<br>
<div class="SUGMemberComment">Ryan Carr</div>
</td>
</tr>
</tbody>
</table>
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(1193420877);checkLIST(1193420877);">Sign Up </span>
<input name="siid" type="checkbox" value="1193420877" id="checkbox1193420877" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(1193420877);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
<!-- ngIf: objConfig.showright == true -->
<!-- ngIf: objConfig.showright == true -->
</tr>
</tbody>
</table>
<div id="sticky-bottom"></div>
<span class="spacer"></span>
</div>
<!-- lazy load bottom ad -->
<div id="botSegmentContainerId" class="row ng-scope" align="center" data-ng-controller="lazyBottomSegmentController" style="z-index:9000">
<div class="col-xs-12">
<!-- ngIf: showFooterAd -->
</div>
</div>
</form>
Text Content
WE VALUE YOUR PRIVACY We and our partners store and/or access information on a device, such as cookies and process personal data, such as unique identifiers and standard information sent by a device for personalised ads and content, ad and content measurement, and audience insights, as well as to develop and improve products. With your permission we and our partners may use precise geolocation data and identification through device scanning. You may click to consent to our and our partners’ processing as described above. Alternatively you may access more detailed information and change your preferences before consenting or to refuse consenting. Please note that some processing of your personal data may not require your consent, but you have a right to object to such processing. Your preferences will apply to this website only. You can change your preferences at any time by returning to this site or visit our privacy policy. MORE OPTIONSAGREE We value your privacy. We use cookies and other technologies to keep the site reliable and secure, tailor your experience, measure site performance and present relevant offers and advertisements, as described in our Privacy Policy. Got it! Toggle navigation * Features * Pricing * More * Resources & Tips * Blog * Collect Money * Enterprise * Help * Log In * Create a Sign Up BOHEMIA Cares BOHEMIA CARES PRESENTS A CHRISTMAS GALA Please review the available slots below and click on the button to sign up. Director Tucker will contact you to confirm your volunteer assignment. Thank you!! Date: 12/03/2022 (Sat.) Created by: SJ Shaylonda Jackson Already signed up? You can change your sign up. Time (CST) Available Slot 3:30pm - 4:30pm Set-Up Committee (7) 1 of 7 slots filled KB Kyra Bell Sign Up 4:30pm - 5:15pm Greeter (5) 2 of 5 slots filled YW Yolonda Withers TH Tammy Hull-Richardson Sign Up 5:00pm - 5:45pm Bathroom Attendees (4) Sign Up Auction Host (6) 1 of 6 slots filled CH Cynthia Hill Sign Up 5:15pm - 6:00pm Greeter (5) 4 of 5 slots filled SD Sannecia Davis SC Shawnitha Cooper (3) SIU Team Sign Up 5:45pm - 6:30pm Bathroom Attendees (4) Sign Up Greeter (5) 3 of 5 slots filled RC Ryan Carr Ryan Carr SB Shelia Boyd RM Regina Murray Sign Up 6:30pm - 7:00pm Bathroom Attendees (4) Sign Up Auction Host (6) Sign Up 6:45pm - 7:30pm Dinner Servers (12) Sign Up 7:00pm - 7:30pm Bathroom Attendees (4) Sign Up Auction Host (6) Sign Up 7:30pm - 8:00pm Bathroom Attendees (4) Sign Up Auction Host (6) Sign Up 7:30pm - 8:15pm Dinner Servers (12) Sign Up 8:00pm - 8:45pm Bathroom Attendees (4) Sign Up 8:45pm - 9:30pm VIP Guest Host (4) Sign Up Auction Host (6) Sign Up 9:00pm - 9:45pm Bathroom Attendees (4) Sign Up 10:00pm - 10:45pm Clean-up Committee (12) 1 of 12 slots filled RC Ryan Carr Ryan Carr Sign Up ©2022 SignUpGenius. All Rights Reserved. Privacy Policy | Terms of Service | Do Not Sell My Personal Information