{"id":281,"date":"2021-03-31T07:51:19","date_gmt":"2021-03-31T11:51:19","guid":{"rendered":"https:\/\/www.gcc.mass.edu\/xcommencement\/?page_id=281"},"modified":"2026-03-11T08:49:54","modified_gmt":"2026-03-11T12:49:54","slug":"rsvp","status":"publish","type":"page","link":"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/","title":{"rendered":"Confirm Graduate Participation"},"content":{"rendered":"<script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n\n\/* ]]> *\/\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_4' style='display:none'>\n                        <div class='gform_heading'>\n\t\t\t\t\t\t\t<p class='gform_required_legend'>&quot;<span class=\"gfield_required gfield_required_asterisk\">*<\/span>&quot; indicates required fields<\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_4'  action='\/commencement\/wp-json\/wp\/v2\/pages\/281' data-formid='4' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_4' class='gform_fields top_label form_sublabel_below description_above validation_below'><fieldset id=\"field_4_1\" class=\"gfield gfield--type-name gfield--input-type-name gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>Legal Name<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_complex ginput_container ginput_container--name no_prefix has_first_name no_middle_name has_last_name no_suffix gf_name_has_2 ginput_container_name gform-grid-row' id='input_4_1'>\n                            \n                            <span id='input_4_1_3_container' class='name_first gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.3' id='input_4_1_3' value='' tabindex='1001'  aria-required='true'     \/>\n                                                    <label for='input_4_1_3' class='gform-field-label gform-field-label--type-sub '>First<\/label>\n                                                <\/span>\n                            \n                            <span id='input_4_1_6_container' class='name_last gform-grid-col gform-grid-col--size-auto' >\n                                                    <input type='text' name='input_1.6' id='input_4_1_6' value='' tabindex='1003'  aria-required='true'     \/>\n                                                    <label for='input_4_1_6' class='gform-field-label gform-field-label--type-sub '>Last<\/label>\n                                                <\/span>\n                            \n                        <\/div><\/fieldset><fieldset id=\"field_4_2\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>Email<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='ginput_complex ginput_container ginput_container_email gform-grid-row' id='input_4_2_container'>\n                                <span id='input_4_2_1_container' class='ginput_left gform-grid-col gform-grid-col--size-auto'>\n                                    <input class='' type='email' name='input_2' id='input_4_2' value='' tabindex='1005'   aria-required=\"true\" aria-invalid=\"false\"  \/>\n                                    <label for='input_4_2' class='gform-field-label gform-field-label--type-sub '>Enter Email<\/label>\n                                <\/span>\n                                <span id='input_4_2_2_container' class='ginput_right gform-grid-col gform-grid-col--size-auto'>\n                                    <input class='' type='email' name='input_2_2' id='input_4_2_2' value='' tabindex='1006'   aria-required=\"true\" aria-invalid=\"false\"  \/>\n                                    <label for='input_4_2_2' class='gform-field-label gform-field-label--type-sub '>Confirm Email<\/label>\n                                <\/span>\n                                <div class='gf_clear gf_clear_complex'><\/div>\n                            <\/div><\/fieldset><div id=\"field_4_13\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><div class=\"callout\"><i class=\"fas fa-circle-info\" aria-hidden=\"true\"><\/i><div class=\"callout-content\">Your <strong>diploma name<\/strong> will be used for your diploma and any academic achievement awards you may receive, and may be used in press releases as well.<\/div><\/div><\/div><div id=\"field_4_7\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_7'><span class='gform-field-label__text'>Diploma Name<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='gfield_description' id='gfield_description_4_7'>Enter your name <strong>exactly<\/strong> as you wish it to appear on your diploma<\/div><div class='ginput_container ginput_container_text'><input name='input_7' id='input_4_7' type='text' value='' class='large'  aria-describedby=\"gfield_description_4_7\" tabindex='1007'  aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_4_8\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_8'><span class='gform-field-label__text'>Confirm Name<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='gfield_description' id='gfield_description_4_8'>One more time, please\u2014so we can make sure we get it right!<\/div><div class='ginput_container ginput_container_text'><input name='input_8' id='input_4_8' type='text' value='' class='large'  aria-describedby=\"gfield_description_4_8\" tabindex='1008'  aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_4_3\" class=\"gfield gfield--type-text gfield--input-type-text gfield_contains_required field_sublabel_below gfield--no-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_3'><span class='gform-field-label__text'>Student ID#<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_3' id='input_4_3' type='text' value='' class='medium'   tabindex='1009'  aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><fieldset id=\"field_4_6\" class=\"gfield gfield--type-checkbox gfield--type-choice gfield--input-type-checkbox gfield--width-full gfield_contains_required field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>Which event(s) do you plan to attend?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/legend><div class='gfield_description' id='gfield_description_4_6'>Check all that apply. Please note <strong>all graduates<\/strong> can participate in Commencement; if you choose this option, we will order a cap and gown for you.<\/div><div class='ginput_container ginput_container_checkbox'><div class='gfield_checkbox ' id='input_4_6'><div class='gchoice gchoice_4_6_1'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_6.1' type='checkbox'  value='Associate Degree Nursing Pinning'  id='choice_4_6_1' tabindex='1010'  aria-describedby=\"gfield_description_4_6\"\/>\n\t\t\t\t\t\t\t\t<label for='choice_4_6_1' id='label_4_6_1' class='gform-field-label gform-field-label--type-inline'>Associate Degree Nursing Pinning<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_4_6_2'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_6.2' type='checkbox'  value='Commencement'  id='choice_4_6_2' tabindex='1011'  \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_6_2' id='label_4_6_2' class='gform-field-label gform-field-label--type-inline'>Commencement<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_4_6_3'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_6.3' type='checkbox'  value='Medical Assistant Ceremony'  id='choice_4_6_3' tabindex='1012'  \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_6_3' id='label_4_6_3' class='gform-field-label gform-field-label--type-inline'>Medical Assistant Ceremony<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_4_6_4'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_6.4' type='checkbox'  value='Practical Nursing Pinning'  id='choice_4_6_4' tabindex='1013'  \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_6_4' id='label_4_6_4' class='gform-field-label gform-field-label--type-inline'>Practical Nursing Pinning<\/label>\n\t\t\t\t\t\t\t<\/div><div class='gchoice gchoice_4_6_5'>\n\t\t\t\t\t\t\t\t<input class='gfield-choice-input' name='input_6.5' type='checkbox'  value='I am not participating in any events'  id='choice_4_6_5' tabindex='1014'  \/>\n\t\t\t\t\t\t\t\t<label for='choice_4_6_5' id='label_4_6_5' class='gform-field-label gform-field-label--type-inline'>I am not participating in any events<\/label>\n\t\t\t\t\t\t\t<\/div><\/div><\/div><\/fieldset><div id=\"field_4_9\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-half gfield_contains_required field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_9'><span class='gform-field-label__text'>Gown Size<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='gfield_description' id='gfield_description_4_9'><span class=\"su-lightbox\" data-mfp-src=\"#gown-chart\" data-mfp-type=\"inline\" data-mobile=\"yes\">View size chart<\/span><\/div><div class='ginput_container ginput_container_select'><select name='input_9' id='input_4_9' class='large gfield_select' tabindex='1015' aria-describedby=\"gfield_description_4_9\"  aria-required=\"true\" aria-invalid=\"false\" ><option value='' ><\/option><option value='N\/A' >Don&#039;t need\u2014have cap\/gown already<\/option><option value='Regular - 39' >Regular - 39<\/option><option value='Regular - 42' >Regular - 42<\/option><option value='Regular - 45' >Regular - 45<\/option><option value='Regular - 48' >Regular - 48<\/option><option value='Regular - 51' >Regular - 51<\/option><option value='Regular - 54' >Regular - 54<\/option><option value='Regular - 57' >Regular - 57<\/option><option value='Regular - 60' >Regular - 60<\/option><option value='Regular - 63' >Regular - 63<\/option><option value='Regular - 66' >Regular - 66<\/option><option value='Full Fit - F1' >Full Fit - F1<\/option><option value='Full Fit - F2' >Full Fit - F2<\/option><option value='Full Fit - F3' >Full Fit - F3<\/option><option value='Full Fit - F4' >Full Fit - F4<\/option><option value='Full Fit - F5' >Full Fit - F5<\/option><\/select><\/div><\/div><div id=\"field_4_12\" class=\"gfield gfield--type-number gfield--input-type-number gfield--width-half gfield_contains_required field_sublabel_below gfield--has-description field_description_above field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_12'><span class='gform-field-label__text'>Total # of guests<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='gfield_description' id='gfield_description_4_12'>Including yourself<\/div><div class='ginput_container ginput_container_number'><input name='input_12' id='input_4_12' type='number' step='any'   value='' class='large' tabindex='1016'    aria-required=\"true\" aria-invalid=\"false\" aria-describedby=\"gfield_description_4_12\" \/><\/div><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <button type='submit' id='gform_submit_button_4' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' tabindex='1017'>Submit<\/button> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_4' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_4' id='gform_theme_4' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_4' id='gform_style_settings_4' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_4' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='4' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='mkYTMAWniDFwdyeKLDMKtU+uzi3uBY1huijmPozPR+dRsnzxsrGlcDSgByiSrZoPjvEhMz5xkkz77ZR83Yq2gE1UjY4sf6okY4yHuzE26D2bT\/c=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_4' value='WyJ7XCIxMVwiOltcIjIyYzhmZmE0MjAzZmVkNDJkNGFhMmZkMDVjNWZkNGIzXCIsXCJmZTU4ZDZlZjlhNjg0MDViYzljMjE0NDEzYmM3YmQ5N1wiXSxcIjlcIjpbXCIxYjAxNTZlMDQ1Yzc0YWQwMTM5NmNhMWU1NDlkZmMzY1wiLFwiYzRhYjQwNjUyNTljYWM0ZjA0NGFmOTg4ZDJlNzgyZTJcIixcIjE5MzUwMWE3MmNhZmM5MmJkZWIyOGNhMWI4YWJmNzkyXCIsXCJhMDdiYTI4NDkyM2Y2NzkxMWMyOGY0YzhjYjVlODZlZFwiLFwiM2I0YjRmMmI0MzMzMDQ2YjcyZDkyMDUzNzdmZmEzNDJcIixcIjM1YTVjOWVlNjhjYTAxOTczMzU3MTJjYjMwM2NmN2VlXCIsXCI1NDk2MzBjNTUwYzQxMmRlZGMwZmM4NjQyOTcyMDBjMlwiLFwiYzUwMDZiNmYzMmY5NTUyNmVkNjk4YjdmZDIzNjNhNThcIixcIjk5NjlmNmU3MjBhNzQ3NTQwMDU4MjI2ZWQyNTgwMTdkXCIsXCJhZDY4YTVkNGE4YmI2OWJmODk2YmRlNzk0YmIzNjA0M1wiLFwiOGZkMmVjMmY0MTgxNjJiZDMzNmYyZGY2NjJmNTE3YTdcIixcImRhMmI5MTU3MDVjNTc3MzNlYzUzOTg0ODVlYTYwMmE4XCIsXCI1ZTIyZGQ5MDAzY2RmMTBiNGViNWY2MGY3NWQ0NmI4ZVwiLFwiMjgyYWQ3NTkyY2IxNmM0YjE2MjNhYzdjOGFhMDNiMmFcIixcIjYzMDAxNDYzNzA1Y2NlNTU3ZDM4NmY5ZWI4MWEwYzA2XCIsXCIxMjY0NDcwMTQ1OWEyOGY1YWUxYTcxMGUzYTFiZTU2OVwiLFwiMmY3ZjBjNjFkNWE3NzgxMWI3ODIyN2MxMzQ1ZWNmYzRcIl0sXCJnZm9ybV9zdWJtaXNzaW9uX21ldGhvZFwiOltcIjRlZDRmMzkxYjBlNzg3OTk5OTE0OGY0MmU2ODg5OTMxXCIsXCI2NDkzYzhiOTk2OTMwNGE5NmU4M2QzZDMwNDY0NmU3M1wiXSxcImdmb3JtX3RoZW1lXCI6XCI3ZjdkOTgzNGQ0ZTY1Mjk0MGJhY2EwZDlkMDg2MDg3Y1wiLFwiZ2Zvcm1fc3R5bGVfc2V0dGluZ3NcIjpcIjBlYmJhZGI5ZTkyOGQ0MzE5MTM3MmE5YTEzYmU1Y2Y2XCIsXCJmb3JtX2lkXCI6XCI3NmIwZTM1MzA4ZWEyYmQwOTJlOTE0Mzc0MzEzMzQ0NVwiLFwidXJsXCI6XCJjOWY1NGI2ZDMzOTQ3M2MxNmY1NzQ4YTM5MGRkYjc4Y1wiLFwic3RhdGVfdGltZXN0YW1wXCI6XCJiZTQ2M2U4MTA1MzkwOGZiMWVjYjExNjdlMWJkZDQxZlwifSIsIjQxNGQyM2NkNDg3MWZjYmI1MDcxNmRhNDlmOWI5MGRlIiwxNzg2NDA1NDAwXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_4' id='gform_target_page_number_4' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_4' id='gform_source_page_number_4' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div>\n<div class=\"su-lightbox-content su-u-trim \" id=\"gown-chart\" style=\"display:none;width:auto;min-width:none;max-width:75%;margin-top:40px;margin-bottom:40px;padding:40px;background:#FFFFFF;color:#333333;box-shadow:0px 0px 15px #333333;text-align:center\"><div class=\"content_block\" id=\"custom_post_widget-4691\"><div class=\"gcc-table-wrapper\">\n<table class=\"gcc-gown-chart\">\n<thead>\n<tr class=\"gcc-main-header\">\n<th colspan=\"3\">Regular<\/th>\n<th colspan=\"2\">Full Fit**<\/th>\n<\/tr>\n<tr class=\"gcc-sub-header\">\n<th>Height*<\/th>\n<th>Weight (lbs.)<\/th>\n<th>Size<\/th>\n<th>Weight<\/th>\n<th>Size<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>4'6\" - 4'8\"<\/td>\n<td>up to 140<\/td>\n<td>39<\/td>\n<td>140 +<\/td>\n<td rowspan=\"2\" class=\"gcc-fullfit-cell\">F1<\/td>\n<\/tr>\n<tr>\n<td>4'9\" - 4'11\"<\/td>\n<td>up to 160<\/td>\n<td>42<\/td>\n<td>160 +<\/td>\n<\/tr>\n<tr class=\"gcc-alt-row\">\n<td>5'0\" - 5'2\"<\/td>\n<td>up to 175<\/td>\n<td>45<\/td>\n<td>175 +<\/td>\n<td rowspan=\"2\" class=\"gcc-fullfit-cell\">F2<\/td>\n<\/tr>\n<tr class=\"gcc-alt-row\">\n<td>5'3\" - 5'5\"<\/td>\n<td>up to 190<\/td>\n<td>48<\/td>\n<td>190 +<\/td>\n<\/tr>\n<tr>\n<td>5'6\" - 5'8\"<\/td>\n<td>up to 235<\/td>\n<td>51<\/td>\n<td>235 +<\/td>\n<td rowspan=\"2\" class=\"gcc-fullfit-cell\">F3<\/td>\n<\/tr>\n<tr>\n<td>5'9\" - 5'11\"<\/td>\n<td>up to 255<\/td>\n<td>54<\/td>\n<td>255 +<\/td>\n<\/tr>\n<tr class=\"gcc-alt-row\">\n<td>6'0\" - 6'2\"<\/td>\n<td>up to 275<\/td>\n<td>57<\/td>\n<td>275 +<\/td>\n<td rowspan=\"2\" class=\"gcc-fullfit-cell\">F4<\/td>\n<\/tr>\n<tr class=\"gcc-alt-row\">\n<td>6'3\" - 6'5\"<\/td>\n<td>up to 290<\/td>\n<td>60<\/td>\n<td>290 +<\/td>\n<\/tr>\n<tr>\n<td>6'6\" - 6'8\"<\/td>\n<td>up to 300<\/td>\n<td>63<\/td>\n<td>300 +<\/td>\n<td rowspan=\"2\" class=\"gcc-fullfit-cell\">F5<\/td>\n<\/tr>\n<tr>\n<td>6'9\" - 6'11\"<\/td>\n<td>up to 310<\/td>\n<td>66<\/td>\n<td>310 +<\/td>\n<\/tr>\n<\/tbody>\n<tfoot>\n<tr>\n<td colspan=\"5\">\n            *Height measurements include cap and gown. <br \/>\n            **Full fit gowns accommodate up to an additional 130 lbs. Gowns larger than full fit should be ordered by height only and noted as double full fit.\n          <\/td>\n<\/tr>\n<\/tfoot>\n<\/table>\n<\/div>\n<\/div><\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":4647,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":"","_links_to":"","_links_to_target":""},"class_list":["post-281","page","type-page","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Confirm Graduate Participation - Commencement<\/title>\n<meta name=\"robots\" content=\"noindex, nofollow\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/\",\"url\":\"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/\",\"name\":\"Confirm Graduate Participation - Commencement\",\"isPartOf\":{\"@id\":\"https:\/\/www.gcc.mass.edu\/commencement\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.gcc.mass.edu\/commencement\/files\/2026\/03\/commencement-header-1.jpg\",\"datePublished\":\"2021-03-31T11:51:19+00:00\",\"dateModified\":\"2026-03-11T12:49:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/#primaryimage\",\"url\":\"https:\/\/www.gcc.mass.edu\/commencement\/files\/2026\/03\/commencement-header-1.jpg\",\"contentUrl\":\"https:\/\/www.gcc.mass.edu\/commencement\/files\/2026\/03\/commencement-header-1.jpg\",\"width\":1200,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.gcc.mass.edu\/commencement\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Confirm Graduate Participation\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.gcc.mass.edu\/commencement\/#website\",\"url\":\"https:\/\/www.gcc.mass.edu\/commencement\/\",\"name\":\"Commencement\",\"description\":\"Greenfield Community College\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.gcc.mass.edu\/commencement\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Confirm Graduate Participation - Commencement","robots":{"index":"noindex","follow":"nofollow"},"twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/","url":"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/","name":"Confirm Graduate Participation - Commencement","isPartOf":{"@id":"https:\/\/www.gcc.mass.edu\/commencement\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/#primaryimage"},"image":{"@id":"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/#primaryimage"},"thumbnailUrl":"https:\/\/www.gcc.mass.edu\/commencement\/files\/2026\/03\/commencement-header-1.jpg","datePublished":"2021-03-31T11:51:19+00:00","dateModified":"2026-03-11T12:49:54+00:00","breadcrumb":{"@id":"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/#primaryimage","url":"https:\/\/www.gcc.mass.edu\/commencement\/files\/2026\/03\/commencement-header-1.jpg","contentUrl":"https:\/\/www.gcc.mass.edu\/commencement\/files\/2026\/03\/commencement-header-1.jpg","width":1200,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/www.gcc.mass.edu\/commencement\/rsvp\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.gcc.mass.edu\/commencement\/"},{"@type":"ListItem","position":2,"name":"Confirm Graduate Participation"}]},{"@type":"WebSite","@id":"https:\/\/www.gcc.mass.edu\/commencement\/#website","url":"https:\/\/www.gcc.mass.edu\/commencement\/","name":"Commencement","description":"Greenfield Community College","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.gcc.mass.edu\/commencement\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"publishpress_future_action":{"enabled":false,"date":"2026-08-17 19:43:20","action":"change-status","newStatus":"draft","terms":[],"taxonomy":"pp_notify_user","extraData":[]},"publishpress_future_workflow_manual_trigger":{"enabledWorkflows":[]},"_links":{"self":[{"href":"https:\/\/www.gcc.mass.edu\/commencement\/wp-json\/wp\/v2\/pages\/281","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.gcc.mass.edu\/commencement\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.gcc.mass.edu\/commencement\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.gcc.mass.edu\/commencement\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.gcc.mass.edu\/commencement\/wp-json\/wp\/v2\/comments?post=281"}],"version-history":[{"count":11,"href":"https:\/\/www.gcc.mass.edu\/commencement\/wp-json\/wp\/v2\/pages\/281\/revisions"}],"predecessor-version":[{"id":4694,"href":"https:\/\/www.gcc.mass.edu\/commencement\/wp-json\/wp\/v2\/pages\/281\/revisions\/4694"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.gcc.mass.edu\/commencement\/wp-json\/wp\/v2\/media\/4647"}],"wp:attachment":[{"href":"https:\/\/www.gcc.mass.edu\/commencement\/wp-json\/wp\/v2\/media?parent=281"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}