www.signupgenius.com
Open in
urlscan Pro
2606:4700:10::6816:839
Public Scan
Submitted URL: http://email.signupgenius.com/ls/click?upn=QSGae4y1zLdLbUpXVK0MOUWSXfjVaLPzgYC0CUzWlTomwl-2BGuI8sLKFX7AhpvKYDkOjHqTETV5JIMvZ3w...
Effective URL: https://www.signupgenius.com/go/5080d45aaa928a6fd0-teacher6
Submission: On April 29 via api from US — Scanned from DE
Effective URL: https://www.signupgenius.com/go/5080d45aaa928a6fd0-teacher6
Submission: On April 29 via api 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">
<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";
}
$scope.image1 = {
"IMAGEPOSITION": 1,
"IMAGETYPEID": 1,
"THEMEIMAGE": "/images/theme/ADBD998FAEA29DCDF59EC5DAB0187CDD_0.png",
"PAIRVALUE": 1580918145,
"ISAPPROVED": 1,
"SERVERFILENAME": "ADBD998FAEA29DCDF59EC5DAB0187CDD_0.png",
"desktopMemberImage": "https://www.signupgenius.com/images/theme/ADBD998FAEA29DCDF59EC5DAB0187CDD_0.png",
"IMAGEHEIGHT": 225,
"ID": 2477332,
"THEMEID": 44726,
"PAIREDIMAGEWIDTH": 800,
"isCustomImage": 0,
"PAIREDIMAGEFILENAME": "467DF9181453F8A39CEE15E14FDC8436_0.png",
"stockThemeImage": "/images/theme/ADBD998FAEA29DCDF59EC5DAB0187CDD_0.png",
"mainImagePath": "",
"DISABLED": 0,
"PAIREDIMAGEID": 2477333,
"mobileMemberImage": "https://www.signupgenius.com/images/theme/ADBD998FAEA29DCDF59EC5DAB0187CDD_0.png",
"IMAGECROPCOORDS": [0.0, 4.0, 325.0, 221.0, 325.0, 217.0],
"IMAGEWIDTH": 325,
"IMAGECUSTOM": 0,
"IMAGETYPE": "Main",
"IMAGERATIO": 1.4,
"CLIENTFILENAME": "Yellow Heart",
"PAIREDIMAGEHEIGHT": 552
};
$scope.image2 = {
"IMAGEPOSITION": 2,
"IMAGETYPEID": 4,
"THEMEIMAGE": "/images/theme/72129DA37369762F2E87F2AAA9208EDD_0.jpg",
"PAIRVALUE": 1580918110,
"ISAPPROVED": 1,
"SERVERFILENAME": "72129DA37369762F2E87F2AAA9208EDD_0.jpg",
"desktopMemberImage": "https://www.signupgenius.com/images/theme/72129DA37369762F2E87F2AAA9208EDD_0.jpg",
"IMAGEHEIGHT": 371,
"ID": 2477331,
"THEMEID": 44726,
"PAIREDIMAGEWIDTH": 325,
"isCustomImage": 0,
"PAIREDIMAGEFILENAME": "16021B941C4D8205260A91D76912D076_0.jpg",
"stockThemeImage": "/images/theme/72129DA37369762F2E87F2AAA9208EDD_0.jpg",
"mainImagePath": "",
"DISABLED": 0,
"PAIREDIMAGEID": 2477330,
"mobileMemberImage": "https://www.signupgenius.com/images/theme/72129DA37369762F2E87F2AAA9208EDD_0.jpg",
"IMAGECROPCOORDS": [0.0, 0.0, 1300.0, 371.0, 1300.0, 371.0],
"IMAGEWIDTH": 1300,
"IMAGECUSTOM": 0,
"IMAGETYPE": "Large Main",
"IMAGERATIO": 3.5,
"CLIENTFILENAME": "Classroom Blurred",
"PAIREDIMAGEHEIGHT": 93
};
//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">
<div style="width=100%">
<div class="mod-6-wrap-2">
<div id="image2" class="imagemask rendering zoom-in">
<img src="/images/theme/72129DA37369762F2E87F2AAA9208EDD_0.jpg" alt="" border="0" data-ng-style="{'margin-left': image2.left,'margin-top': image2.top,'width': image2.newwidth, 'height': image2.newheight}"
style="margin-left: 0px; margin-top: 0px; width: 1600px; height: 456px;">
</div>
</div>
</div>
<div class="container">
<style>
/* 2.1.2017 -tb
/* Adjustments per Dan */
/* original CSS is with the module */
.mod-6-group-1 {
min-width: 325px;
max-width: 28.508771929824561%;
margin: calc(-216.667px / 1.5) 0 auto 0;
}
</style>
<div class="mod-6-grandparent" align="center">
<div class="mod-6-parent">
<div class="tb-module-6 mod-6-resp">
<div class="mod-6-group-1" align="center">
<!-- image 1 content -->
<div ng-class="tbshadow" class="mod-6-wrap-1 tb-shadow">
<div id="image1" class="imagemask rendering zoom-in">
<img src="/images/theme/ADBD998FAEA29DCDF59EC5DAB0187CDD_0.png" alt="" border="0" data-ng-style="{'margin-left': image1.left,'margin-top': image1.top,'width': image1.newwidth, 'height': image1.newheight}"
style="margin-left: 0px; margin-top: -4px; width: 325px; height: 225px;">
</div>
</div>
</div>
<div class="tb-title-6">
<div class="SUGbold" align="center">Schools</div>
<h1 class="SUGHeaderText" align="center">Teacher Appreciation Day Gift</h1>
</div>
</div>
</div>
</div>
<div class="clearfix tb-desc-6 SUGmain">
<p>Let's show our appreciation of Mrs. Davis with a gift this year. Sign up to show your gratitude.</p>
</div>
<div class="col-md-12 col-body-100 SUGmain" align="center">
<strong>Date: </strong>05/02/2023 (Tue.) <p></p>
<div align="center"></div>
<div align="center">
<table>
<tbody>
<tr>
<td><strong>Created by:</strong> </td>
<td valign="top">
<profile-pic
dataset="{"id":1,"value":"SS","type":"initials","resource":{"small":"","medium":"","large":"","text":"SS","xlarge":""}}"
color="#000000" bgcolor="#FCE482" 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: #FCE482 !important; color: #000000 !important;"> SS <!--<![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/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"70350e9c2f239bc4","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2021.12.0","si":100}" crossorigin="anonymous"
class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td> SignUpGenius Staff</td>
<td>
<div style="padding-top:
2px;"> <a href="https://www.signupgenius.com/index.cfm?go=c.help&eid=0CC3C1D9FACEFB65&cs=09B0BADC8FCC8B6C7B7E64725BB49BCB&id=19058404&urlID=5080D45AAA928A6FD0-teacher6" class="SUGlink"><span class="glyphicon glyphicon-envelope" style="font-size:15px;"><span></span></span></a>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="row">
<div class="col-md-12">
<div style="margin-top:18px; padding-top:18px;border-top: 1px solid #332B2B;"> Already signed up? You can
<a href="https://www.signupgenius.com/index.cfm?go=s.EditHelp&urlid=5080d45aaa928a6fd0-teacher6" class="SUGlink">change your sign up</a>. </div>
</div>
</div>
</div>
<div class="clearfix"></div>
<style>
/* tb-module-6 */
/* Begin Responsive tb-module-6 */
.tb-module-6 {
width: 100%;
max-width: 1140px;
}
.mod-6-wrap-1 {
width: 100%;
padding-bottom: 66.666666666666667%;
/* 6x4 horz 3x2 1.5 ratio, ratio 250w x 250h */
position: relative;
}
.mod-6-wrap-2 {
width: 100%;
padding-bottom: 28.530670470756063%;
/* Ratio 3.507 1140w x 325 */
position: relative;
padding-top: 0;
margin-top: 0;
}
/* 2.1.2017 -tb
/* Moved to top of file for specific min-sizes with Ads and without ads */
/* Adjustments per Dan */
/*
/* original too small:
.mod-6-group-1 {
max-width:28.508771929824561%;
margin: -9.5% 0 auto 0;
}
*/
/* recommended, use this instead:
/* this is use at the top of this doc for with ads
and also use this for mobile and print */
/* Leave it commented it out here */
/*
.mod-6-group-1 {
max-width:35%;
margin: calc(-12% * 1.25) 0 auto 0;
}
*/
.mod-6-parent {
width: 100%;
}
.mod-6-fixed {
display: block;
/* 100% responsive */
}
.mod-6-resp {
display: inline;
/* 100% responsive */
}
.mod-6-scale {
display: inline-block;
/* Honors Max Width */
}
.mod-6-spc-1 {
width: 100%;
padding-bottom: 8%;
}
div.mod-6-wrap-1>.imagemask,
div.mod-6-wrap-2>.imagemask,
div.mod-6-wrap-3>.imagemask {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
}
/* End Responsive module 6 */
</style>
<style>
.tb-title-6 {
text-align: center;
padding-top: 2.5%;
}
.col-body-100 {
width: 100%;
padding-bottom: 2.5rem;
/*padding-left:3%;
padding-right:3%;*/
/* removed 2.1.17 tb */
}
.tb-desc-6 {
width: 100%;
text-align: center;
padding-top: 0.5%;
/*padding-left:3%;
padding-right:3%;*/
}
@media (max-width: 1199px) {}
</style>
</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>
<div class="container" style="min-width:970px !important;">
<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="5080D45AAA928A6FD0-teacher6">
<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="#E39F56" height="35" class="SUGtableheader"> Available Slot <span class="SUGheaddate"></span>
</td>
</tr>
<tr>
<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="border-bottom: 1px #24201E solid;">
<p class="SUGbigbold hrow">General Donation - $10 </p>
<p class="SUGsmall hrow"> (<strong>$10.00</strong>) </p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #24201E solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #24201E solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">4 slots filled - more available</span><br clear="all">
</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":"EB","type":"initials","resource":{"small":"","medium":"","large":"","text":"EB","xlarge":""}}"
color="#000000" bgcolor="#FCE482" 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: #FCE482 !important; color: #000000 !important;"> EB <!--<![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/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"70350e9c2f239bc4","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2021.12.0","si":100}" crossorigin="anonymous"
class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Earl E. Bird </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":5,"value":38457397,"type":"customimage"}" color="#000000" bgcolor="#FCE482" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<div style="display: inline-block;" class="ng-scope">
<div class="ppic ppic-30" data-ng-style="{'background-color': bgcolor }" style="background-color: rgb(252, 228, 130);">
<img alt="Profile Icon" style="margin: 0px !important; padding: 0px !important; vertical-align: baseline !important; height: 30px; width: 30px;" data-ng-style="{height: imgsize + 'px' , width: imgsize +'px'}"
data-ng-src="https://images.signupgenius.com/memberImages/profile/38457397/profilepic_30.png?0.8650806370735324"
src="https://images.signupgenius.com/memberImages/profile/38457397/profilepic_30.png?0.8650806370735324">
</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>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> E.N. Stein </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":5,"value":38457728,"type":"customimage"}" color="#000000" bgcolor="#FCE482" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<div style="display: inline-block;" class="ng-scope">
<div class="ppic ppic-30" data-ng-style="{'background-color': bgcolor }" style="background-color: rgb(252, 228, 130);">
<img alt="Profile Icon" style="margin: 0px !important; padding: 0px !important; vertical-align: baseline !important; height: 30px; width: 30px;" data-ng-style="{height: imgsize + 'px' , width: imgsize +'px'}"
data-ng-src="https://images.signupgenius.com/memberImages/profile/38457728/profilepic_30.png?0.9379719896519332"
src="https://images.signupgenius.com/memberImages/profile/38457728/profilepic_30.png?0.9379719896519332">
</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>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Isah Geaneus </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":"RS","type":"initials","resource":{"small":"","medium":"","large":"","text":"RS","xlarge":""}}"
color="#000000" bgcolor="#FCE482" 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: #FCE482 !important; color: #000000 !important;"> RS <!--<![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/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"70350e9c2f239bc4","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2021.12.0","si":100}" crossorigin="anonymous"
class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Rita Storee </span>
</td>
</tr>
</tbody>
</table>
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(565383648);checkLIST(565383648);">Sign Up </span>
<input name="siid" type="checkbox" value="565383648" id="checkbox565383648" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(565383648);">
</span>
</div>
</td>
</tr>
<!-- end output loop w/ group="itemID" -->
<tr>
<td valign="top" width="48%" style="border-bottom: 1px #24201E solid;">
<p class="SUGbigbold hrow">Starbucks Card (5)</p>
<p class="SUGsmall hrow"> (<strong>$5.00</strong> each) </p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #24201E solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #24201E solid; padding-top:0px">
<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":"RS","type":"initials","resource":{"small":"","medium":"","large":"","text":"RS","xlarge":""}}"
color="#000000" bgcolor="#FCE482" 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: #FCE482 !important; color: #000000 !important;"> RS <!--<![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/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"70350e9c2f239bc4","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2021.12.0","si":100}" crossorigin="anonymous"
class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Rita Storee </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":5,"value":38457462,"type":"customimage"}" color="#000000" bgcolor="#FCE482" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<div style="display: inline-block;" class="ng-scope">
<div class="ppic ppic-30" data-ng-style="{'background-color': bgcolor }" style="background-color: rgb(252, 228, 130);">
<img alt="Profile Icon" style="margin: 0px !important; padding: 0px !important; vertical-align: baseline !important; height: 30px; width: 30px;" data-ng-style="{height: imgsize + 'px' , width: imgsize +'px'}"
data-ng-src="https://images.signupgenius.com/memberImages/profile/38457462/profilepic_30.png?0.40549870324203274"
src="https://images.signupgenius.com/memberImages/profile/38457462/profilepic_30.png?0.40549870324203274">
</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>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Tom Jefferson </span>
</td>
</tr>
</tbody>
</table>
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(565383649);checkLIST(565383649);">Sign Up </span>
<input name="siid" type="checkbox" value="565383649" id="checkbox565383649" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(565383649);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<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="border-bottom: 1px #24201E solid;">
<p class="SUGbigbold hrow">Panera Bread Card (2)</p>
<p class="SUGsmall hrow"> (<strong>$15.00</strong> each) </p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #24201E solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #24201E solid; padding-top:0px">
<div style="padding-top:5px !important;">
<span class="SUGbigbold">1 of 2 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":"RS","type":"initials","resource":{"small":"","medium":"","large":"","text":"RS","xlarge":""}}"
color="#000000" bgcolor="#FCE482" 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: #FCE482 !important; color: #000000 !important;"> RS <!--<![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/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"70350e9c2f239bc4","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2021.12.0","si":100}" crossorigin="anonymous"
class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Rita Storee </span>
</td>
</tr>
</tbody>
</table>
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(565383650);checkLIST(565383650);">Sign Up </span>
<input name="siid" type="checkbox" value="565383650" id="checkbox565383650" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(565383650);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<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="border-bottom: 1px #24201E solid;">
<p class="SUGbigbold hrow">Flowers and Box of Chocolates </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #24201E solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #24201E solid; padding-top:0px">
<!--<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":5,"value":38457397,"type":"customimage"}" color="#000000" bgcolor="#FCE482" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<div style="display: inline-block;" class="ng-scope">
<div class="ppic ppic-30" data-ng-style="{'background-color': bgcolor }" style="background-color: rgb(252, 228, 130);">
<img alt="Profile Icon" style="margin: 0px !important; padding: 0px !important; vertical-align: baseline !important; height: 30px; width: 30px;" data-ng-style="{height: imgsize + 'px' , width: imgsize +'px'}"
data-ng-src="https://images.signupgenius.com/memberImages/profile/38457397/profilepic_30.png?0.06920509105531703"
src="https://images.signupgenius.com/memberImages/profile/38457397/profilepic_30.png?0.06920509105531703">
</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>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> E.N. Stein </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<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="border-bottom: 1px #24201E solid;">
<p class="SUGbigbold hrow">Bath and Body Hand Soap </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #24201E solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #24201E solid; padding-top:0px">
<!--<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":"BE","type":"initials","resource":{"small":"","medium":"","large":"","text":"BE","xlarge":""}}"
color="#000000" bgcolor="#FCE482" 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: #FCE482 !important; color: #000000 !important;"> BE <!--<![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/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"70350e9c2f239bc4","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2021.12.0","si":100}" crossorigin="anonymous"
class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Brighton Early </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<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="border-bottom: 1px #24201E solid;">
<p class="SUGbigbold hrow">Decorated Drink Tumbler </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #24201E solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #24201E solid; padding-top:0px">
<div class="SUGbuttonContainer link_cursor" style="margin-top:10px;">
<span class="SUGbutton rounded">
<span onclick="checkTheBox(565383654);checkLIST(565383654);">Sign Up </span>
<input name="siid" type="checkbox" value="565383654" id="checkbox565383654" style="vertical-align: middle;position:relative;bottom:3px;" onclick="checkLIST(565383654);">
</span>
</div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<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="border-bottom: 1px #24201E solid;">
<p class="SUGbigbold hrow">Fruit Basket </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #24201E solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #24201E solid; padding-top:0px">
<!--<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":"BE","type":"initials","resource":{"small":"","medium":"","large":"","text":"BE","xlarge":""}}"
color="#000000" bgcolor="#FCE482" 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: #FCE482 !important; color: #000000 !important;"> BE <!--<![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/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"70350e9c2f239bc4","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2021.12.0","si":100}" crossorigin="anonymous"
class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Brighton Early </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<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="border-bottom: 1px #24201E solid;">
<p class="SUGbigbold hrow">Box of Donuts </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top" style="border-bottom: 1px #24201E solid;"> </td>
<td valign="top" width="48%" style="border-bottom: 1px #24201E solid; padding-top:0px">
<!--<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":5,"value":38457728,"type":"customimage"}" color="#000000" bgcolor="#FCE482" class="ng-isolate-scope"><!-- ngInclude: getContentUrl() -->
<div ng-include="getContentUrl()" style="height:30px;" class="ng-scope">
<div style="display: inline-block;" class="ng-scope">
<div class="ppic ppic-30" data-ng-style="{'background-color': bgcolor }" style="background-color: rgb(252, 228, 130);">
<img alt="Profile Icon" style="margin: 0px !important; padding: 0px !important; vertical-align: baseline !important; height: 30px; width: 30px;" data-ng-style="{height: imgsize + 'px' , width: imgsize +'px'}"
data-ng-src="https://images.signupgenius.com/memberImages/profile/38457728/profilepic_30.png?0.6354458497508295"
src="https://images.signupgenius.com/memberImages/profile/38457728/profilepic_30.png?0.6354458497508295">
</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>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Isah Geaneus </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<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">Amazon Gift Card </p>
<p class="SUGsmall hrow">
</p>
</td>
<td width="4%" valign="top"> </td>
<td valign="top" width="48%">
<!--<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":"RS","type":"initials","resource":{"small":"","medium":"","large":"","text":"RS","xlarge":""}}"
color="#000000" bgcolor="#FCE482" 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: #FCE482 !important; color: #000000 !important;"> RS <!--<![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/v652eace1692a40cfa3763df669d7439c1639079717194"
integrity="sha512-Gi7xpJR8tSkrpF7aordPZQlW2DLtzUlZcumS8dMQjwDHEnw9I7ZLyiOj/6tZStRBGtGgN6ceN6cMH8z7etPGlw=="
data-cf-beacon="{"rayId":"70350e9c2f239bc4","token":"124a47a53ebf4252a08b14b4aed23ef0","version":"2021.12.0","si":100}" crossorigin="anonymous"
class="ng-scope"></script>
</div>
</profile-pic>
</td>
<td valign="top" style="padding-top:5px;">
<span class="SUGsignups"> Rita Storee </span>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div style="background-color:#EDD89F; height:150px;">
<div id="submitfooter" align="center">
<div class="container">
<div class="SUGsmall" style="float: right; font-size: 9px; opacity: 0.7; text-align: right;"> ©2022 SignUpGenius.<br>All Rights Reserved.<br>
<a target="_self" href="https://www.signupgenius.com/about/privacy.cfm" class="SUGlink" style="font-size: 9px;">Privacy Policy</a> | <a target="_self" href="https://www.signupgenius.com/about/terms-of-service.cfm" class="SUGlink" style="font-size: 9px;">Terms of Service</a>
| <a href="#/" class="qc-ccpa-persistent-link SUGlink" style="display: none; visibility: hidden;">Do Not Sell My Personal Information</a>
</div>
<input type="submit" value="Submit and Sign Up" class="giantsubmitbutton rounded link_cursor">
</div>
</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 Schools TEACHER APPRECIATION DAY GIFT Let's show our appreciation of Mrs. Davis with a gift this year. Sign up to show your gratitude. Date: 05/02/2023 (Tue.) Created by: SS SignUpGenius Staff Already signed up? You can change your sign up. Available Slot General Donation - $10 ($10.00) 4 slots filled - more available EB Earl E. Bird E.N. Stein Isah Geaneus RS Rita Storee Sign Up Starbucks Card (5) ($5.00 each) 2 of 5 slots filled RS Rita Storee Tom Jefferson Sign Up Panera Bread Card (2) ($15.00 each) 1 of 2 slots filled RS Rita Storee Sign Up Flowers and Box of Chocolates E.N. Stein Bath and Body Hand Soap BE Brighton Early Decorated Drink Tumbler Sign Up Fruit Basket BE Brighton Early Box of Donuts Isah Geaneus Amazon Gift Card RS Rita Storee ©2022 SignUpGenius. All Rights Reserved. Privacy Policy | Terms of Service | Do Not Sell My Personal Information