
<script>
document.addEventListener("DOMContentLoaded", function () {

    const successMessage =
        document.getElementById("success_message");

    if (successMessage) {

        successMessage.scrollIntoView({
            behavior: "smooth",
            block: "center"
        });

        successMessage.focus();
    }

});
</script>
{"id":11,"date":"2022-08-08T21:10:54","date_gmt":"2022-08-08T21:10:54","guid":{"rendered":"https:\/\/alumniclassnotes.local\/?page_id=11"},"modified":"2025-06-11T15:07:48","modified_gmt":"2025-06-11T22:07:48","slug":"submit","status":"publish","type":"page","link":"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/","title":{"rendered":"Submit Your Class Note"},"content":{"rendered":"\n<script\r\n    src=\"https:\/\/www.google.com\/recaptcha\/api.js\"\r\n    async\r\n    defer>\r\n<\/script>\r\n\r\n<link\r\n    rel=\"stylesheet\"\r\n    href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/4.7.0\/css\/font-awesome.min.css\" \/>\r\n\r\n\r\n<script>\r\n    document.addEventListener('DOMContentLoaded', function() {\r\n\r\n        const form =\r\n            document.getElementById('formid');\r\n\r\n        if (!form) {\r\n            return;\r\n        }\r\n\r\n\r\n        const fileInput =\r\n            document.getElementById('fileToUpload');\r\n\r\n        const altInput =\r\n            document.getElementById('post_image_alt_text');\r\n\r\n        const fileAlert =\r\n            document.getElementById('client-alert-file');\r\n\r\n        const recaptchaAlert =\r\n            document.getElementById('client-alert-recaptcha');\r\n\r\n        const submitButton =\r\n            document.getElementById('post_submit');\r\n\r\n        const spinnerContainer =\r\n            document.getElementById('spinner_container');\r\n\r\n\r\n        \/*\r\n         * Make image alt text required only when an image is selected.\r\n         *\/\r\n        if (fileInput && altInput) {\r\n\r\n            fileInput.addEventListener(\r\n                'change',\r\n                function() {\r\n\r\n                    if (fileInput.files.length > 0) {\r\n\r\n                        altInput.required = true;\r\n                        altInput.setAttribute(\r\n                            'aria-required',\r\n                            'true'\r\n                        );\r\n\r\n                    } else {\r\n\r\n                        altInput.required = false;\r\n                        altInput.removeAttribute(\r\n                            'aria-required'\r\n                        );\r\n                    }\r\n                }\r\n            );\r\n        }\r\n\r\n\r\n        \/*\r\n         * Form submission.\r\n         *\r\n         * This listener is attached ONCE when the page loads.\r\n         *\r\n         * The previous form attached a submit listener every time the\r\n         * submit button was clicked.\r\n         *\/\r\n        form.addEventListener(\r\n            'submit',\r\n            function(event) {\r\n\r\n                let validationFailed = false;\r\n\r\n                let firstErrorElement = null;\r\n\r\n\r\n                \/*\r\n                 * Clear previous client-side messages.\r\n                 *\/\r\n                if (fileAlert) {\r\n                    fileAlert.innerHTML = '';\r\n                }\r\n\r\n                if (recaptchaAlert) {\r\n                    recaptchaAlert.innerHTML = '';\r\n                }\r\n\r\n\r\n                \/*\r\n                 * ----------------------------------------------------------\r\n                 * reCAPTCHA\r\n                 * ----------------------------------------------------------\r\n                 *\/\r\n\r\n                let recaptchaResponse = '';\r\n\r\n\r\n                if (\r\n                    typeof grecaptcha === 'undefined'\r\n                ) {\r\n\r\n                    if (recaptchaAlert) {\r\n\r\n                        recaptchaAlert.innerHTML =\r\n                            '<div class=\"alert-error m-t-20\" ' +\r\n                            'role=\"alert\" tabindex=\"-1\">' +\r\n                            '<p>reCAPTCHA could not be loaded. ' +\r\n                            'Please refresh the page and try again.<\/p>' +\r\n                            '<\/div>';\r\n                    }\r\n\r\n                    validationFailed = true;\r\n\r\n                    firstErrorElement =\r\n                        recaptchaAlert ?\r\n                        recaptchaAlert.querySelector(\r\n                            '.alert-error'\r\n                        ) :\r\n                        null;\r\n\r\n                } else {\r\n\r\n                    recaptchaResponse =\r\n                        grecaptcha.getResponse();\r\n\r\n\r\n                    if (!recaptchaResponse) {\r\n\r\n                        if (recaptchaAlert) {\r\n\r\n                            recaptchaAlert.innerHTML =\r\n                                '<div class=\"alert-error m-t-20\" ' +\r\n                                'role=\"alert\" tabindex=\"-1\">' +\r\n                                '<p>Please complete the reCAPTCHA verification.<\/p>' +\r\n                                '<\/div>';\r\n                        }\r\n\r\n                        validationFailed = true;\r\n\r\n                        firstErrorElement =\r\n                            recaptchaAlert ?\r\n                            recaptchaAlert.querySelector(\r\n                                '.alert-error'\r\n                            ) :\r\n                            null;\r\n                    }\r\n                }\r\n\r\n\r\n                \/*\r\n                 * ----------------------------------------------------------\r\n                 * Image Validation\r\n                 * ----------------------------------------------------------\r\n                 *\/\r\n\r\n                if (\r\n                    fileInput &&\r\n                    fileInput.files.length > 0\r\n                ) {\r\n\r\n                    const selectedFile =\r\n                        fileInput.files[0];\r\n\r\n                    const allowedTypes = [\r\n                        'image\/jpeg',\r\n                        'image\/png'\r\n                    ];\r\n\r\n                    const maxFileSize =\r\n                        1048576; \/\/ 1 MB\r\n\r\n                    const fileErrors = [];\r\n\r\n\r\n                    \/*\r\n                     * File type.\r\n                     *\/\r\n                    if (\r\n                        !allowedTypes.includes(\r\n                            selectedFile.type\r\n                        )\r\n                    ) {\r\n\r\n                        fileErrors.push(\r\n                            'Not a valid file type. ' +\r\n                            'Acceptable file types are JPEG or PNG.'\r\n                        );\r\n                    }\r\n\r\n\r\n                    \/*\r\n                     * File size.\r\n                     *\/\r\n                    if (\r\n                        selectedFile.size >\r\n                        maxFileSize\r\n                    ) {\r\n\r\n                        fileErrors.push(\r\n                            'File size is too large. ' +\r\n                            'The image must be 1 MB or smaller.'\r\n                        );\r\n                    }\r\n\r\n\r\n                    \/*\r\n                     * Alt text.\r\n                     *\/\r\n                    if (\r\n                        !altInput ||\r\n                        !altInput.value.trim()\r\n                    ) {\r\n\r\n                        fileErrors.push(\r\n                            'Alternative text is required ' +\r\n                            'for uploaded images.'\r\n                        );\r\n                    }\r\n\r\n\r\n                    \/*\r\n                     * Display image errors.\r\n                     *\/\r\n                    if (fileErrors.length > 0) {\r\n\r\n                        let errorMarkup =\r\n                            '<div class=\"alert-error m-t-20\" ' +\r\n                            'role=\"alert\" tabindex=\"-1\">';\r\n\r\n\r\n                        fileErrors.forEach(\r\n                            function(error) {\r\n\r\n                                errorMarkup +=\r\n                                    '<p>' +\r\n                                    error +\r\n                                    '<\/p>';\r\n                            }\r\n                        );\r\n\r\n\r\n                        errorMarkup += '<\/div>';\r\n\r\n\r\n                        if (fileAlert) {\r\n\r\n                            fileAlert.innerHTML =\r\n                                errorMarkup;\r\n\r\n\r\n                            if (!firstErrorElement) {\r\n\r\n                                firstErrorElement =\r\n                                    fileAlert.querySelector(\r\n                                        '.alert-error'\r\n                                    );\r\n                            }\r\n                        }\r\n\r\n\r\n                        validationFailed = true;\r\n                    }\r\n                }\r\n\r\n\r\n                \/*\r\n                 * ----------------------------------------------------------\r\n                 * Stop submission when custom validation fails\r\n                 * ----------------------------------------------------------\r\n                 *\/\r\n\r\n                if (validationFailed) {\r\n\r\n                    event.preventDefault();\r\n\r\n\r\n                    if (firstErrorElement) {\r\n\r\n                        firstErrorElement.focus();\r\n\r\n                        firstErrorElement.scrollIntoView({\r\n                            behavior: 'smooth',\r\n                            block: 'center'\r\n                        });\r\n                    }\r\n\r\n\r\n                    return;\r\n                }\r\n\r\n\r\n                \/*\r\n                 * ----------------------------------------------------------\r\n                 * Submission is valid\r\n                 * ----------------------------------------------------------\r\n                 *\r\n                 * At this point native HTML validation has already passed\r\n                 * and our additional validation has passed.\r\n                 *\/\r\n\r\n                if (submitButton) {\r\n\r\n                    submitButton.disabled = true;\r\n\r\n                    submitButton.value =\r\n                        'Submitting...';\r\n                }\r\n\r\n\r\n                if (spinnerContainer) {\r\n\r\n                    spinnerContainer.innerHTML =\r\n                        '<span role=\"status\" ' +\r\n                        'aria-live=\"polite\">' +\r\n                        'Submitting... ' +\r\n                        '<i class=\"fa fa-cog fa-spin ' +\r\n                        'text-titan-orange\" ' +\r\n                        'aria-hidden=\"true\" ' +\r\n                        'style=\"font-size:24px\"><\/i>' +\r\n                        '<\/span>';\r\n                }\r\n            }\r\n        );\r\n\r\n    });\r\n<\/script>\r\n\r\n\r\n<form\r\n    id=\"formid\"\r\n    name=\"class_note_form\"\r\n    action=\"\"\r\n    method=\"POST\"\r\n    enctype=\"multipart\/form-data\">\r\n\r\n\r\n    <input type=\"hidden\" id=\"alumni_class_note_nonce\" name=\"alumni_class_note_nonce\" value=\"e009324295\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/class-notes\/wp-json\/wp\/v2\/pages\/11\" \/>\r\n\r\n    <!-- INTRODUCTION -->\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-12\">\r\n\r\n            <p>\r\n                Before drafting a class note, we strongly recommend you review\r\n                <a href=\"class-note-examples\">\r\n                    Cal State Fullerton's Guidelines for Effective Class Notes\r\n                <\/a>.\r\n                After reviewing the guidelines, use the form below to create\r\n                and submit your new Class Note.\r\n            <\/p>\r\n\r\n            <p class=\"text-size-sm text-medium-gray\">\r\n                <span class=\"text-brick-red\">*<\/span>\r\n                = required field.\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <!-- LIFE EVENT -->\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_category\">Your Life Event <span class=\"text-brick-red\">*<\/span><\/label><select id=\"post_category\" name=\"post_category\" required><option value=\"\">Select One<\/option><option value=\"21\" >Awards and Recognition<\/option><option value=\"22\" >Births and Adoptions<\/option><option value=\"23\" >Books, Publications, Exhibits and Performances<\/option><option value=\"24\" >Career<\/option><option value=\"25\" >Education<\/option><option value=\"26\" >General<\/option><option value=\"27\" >Marriages, Commitments and Anniversaries<\/option><option value=\"28\" >Travel<\/option><option value=\"29\" >Volunteer<\/option><\/select>\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <!-- NAME -->\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_firstname\">\r\n                    First Name\r\n                    <span class=\"text-brick-red\">*<\/span>\r\n                <\/label>\r\n\r\n                <input\r\n                    type=\"text\"\r\n                    id=\"post_firstname\"\r\n                    name=\"post_firstname\"\r\n                    value=\"\"\r\n                    aria-required=\"true\"\r\n                    required \/>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_lastname\">\r\n                    Last Name\r\n                    <span class=\"text-brick-red\">*<\/span>\r\n                <\/label>\r\n\r\n                <input\r\n                    type=\"text\"\r\n                    id=\"post_lastname\"\r\n                    name=\"post_lastname\"\r\n                    value=\"\"\r\n                    aria-required=\"true\"\r\n                    required \/>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <!-- MAIDEN NAME -->\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_maiden\">\r\n                    Maiden Name (If different)\r\n                <\/label>\r\n\r\n                <input\r\n                    type=\"text\"\r\n                    id=\"post_maiden\"\r\n                    name=\"post_maiden\"\r\n                    value=\"\" \/>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <!-- CLASS NOTE -->\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-8\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_content\">\r\n                    Post Content (300 characters max)\r\n                    <span class=\"text-brick-red\">*<\/span>\r\n                <\/label>\r\n\r\n                <textarea\r\n                    id=\"post_content\"\r\n                    name=\"post_content\"\r\n                    rows=\"10\"\r\n                    cols=\"70\"\r\n                    aria-required=\"true\"\r\n                    maxlength=\"300\"\r\n                    required><\/textarea>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <!-- IMAGE -->\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"fileToUpload\">\r\n                    Upload an Image (optional):\r\n                <\/label>\r\n\r\n                <input\r\n                    type=\"file\"\r\n                    accept=\".jpg,.jpeg,.png\"\r\n                    name=\"fileToUpload\"\r\n                    id=\"fileToUpload\" \/>\r\n\r\n                <span class=\"text-size-xs m-t-10 text-medium-gray\">\r\n\r\n                    JPEG or PNG. 1MB limit.\r\n                    Submitters are responsible for securing photo permission.\r\n\r\n                    Please be advised that photos may be cropped.\r\n\r\n                    For ideal results please submit an\r\n                    800 x 500 pixel image.\r\n\r\n                <\/span>\r\n\r\n            <\/p>\r\n\r\n\r\n            <div\r\n                id=\"client-alert-file\"\r\n                aria-live=\"assertive\"><\/div>\r\n\r\n        <\/div>\r\n\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_image_alt_text\">\r\n                    Image Alternative Text:\r\n                <\/label>\r\n\r\n                <input\r\n                    type=\"text\"\r\n                    name=\"post_image_alt_text\"\r\n                    id=\"post_image_alt_text\"\r\n                    maxlength=\"100\"\r\n                    value=\"\"\r\n                    placeholder=\"Describe the image\" \/>\r\n\r\n\r\n                <span class=\"text-size-xs m-t-10 text-medium-gray\">\r\n\r\n                    Describe the purpose of the image.\r\n\r\n                    <a href=\"https:\/\/moz.com\/learn\/seo\/alt-text\">\r\n                        Learn more about Alt Text\r\n                    <\/a>.\r\n\r\n                <\/span>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <!-- COLLEGE \/ GRADUATION YEAR -->\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_college\">College <span class=\"text-brick-red\">*<\/span><\/label><select id=\"post_college\" name=\"post_college\" required><option value=\"\">Select One<\/option><option value=\"38\" >College of the Arts<\/option><option value=\"31\" >College of Business and Economics<\/option><option value=\"32\" >College of Communications<\/option><option value=\"33\" >College of Education<\/option><option value=\"34\" >College of Engineering and Computer Science<\/option><option value=\"35\" >College of Health and Human Development<\/option><option value=\"36\" >College of Humanities and Social Sciences<\/option><option value=\"37\" >College of Natural Sciences and Mathematics<\/option><option value=\"39\" >Extension and International Programs<\/option><\/select>\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_gradyear\">Graduation Year <span class=\"text-brick-red\">*<\/span><\/label><select id=\"post_gradyear\" name=\"post_gradyear\" required><option value=\"\">Select One<\/option><option value=\"2026\" >2026<\/option><option value=\"2025\" >2025<\/option><option value=\"2024\" >2024<\/option><option value=\"2023\" >2023<\/option><option value=\"2022\" >2022<\/option><option value=\"2021\" >2021<\/option><option value=\"2020\" >2020<\/option><option value=\"2019\" >2019<\/option><option value=\"2018\" >2018<\/option><option value=\"2017\" >2017<\/option><option value=\"2016\" >2016<\/option><option value=\"2015\" >2015<\/option><option value=\"2014\" >2014<\/option><option value=\"2013\" >2013<\/option><option value=\"2012\" >2012<\/option><option value=\"2011\" >2011<\/option><option value=\"2010\" >2010<\/option><option value=\"2009\" >2009<\/option><option value=\"2008\" >2008<\/option><option value=\"2007\" >2007<\/option><option value=\"2006\" >2006<\/option><option value=\"2005\" >2005<\/option><option value=\"2004\" >2004<\/option><option value=\"2003\" >2003<\/option><option value=\"2002\" >2002<\/option><option value=\"2001\" >2001<\/option><option value=\"2000\" >2000<\/option><option value=\"1999\" >1999<\/option><option value=\"1998\" >1998<\/option><option value=\"1997\" >1997<\/option><option value=\"1996\" >1996<\/option><option value=\"1995\" >1995<\/option><option value=\"1994\" >1994<\/option><option value=\"1993\" >1993<\/option><option value=\"1992\" >1992<\/option><option value=\"1991\" >1991<\/option><option value=\"1990\" >1990<\/option><option value=\"1989\" >1989<\/option><option value=\"1988\" >1988<\/option><option value=\"1987\" >1987<\/option><option value=\"1986\" >1986<\/option><option value=\"1985\" >1985<\/option><option value=\"1984\" >1984<\/option><option value=\"1983\" >1983<\/option><option value=\"1982\" >1982<\/option><option value=\"1981\" >1981<\/option><option value=\"1980\" >1980<\/option><option value=\"1979\" >1979<\/option><option value=\"1978\" >1978<\/option><option value=\"1977\" >1977<\/option><option value=\"1976\" >1976<\/option><option value=\"1975\" >1975<\/option><option value=\"1974\" >1974<\/option><option value=\"1973\" >1973<\/option><option value=\"1972\" >1972<\/option><option value=\"1971\" >1971<\/option><option value=\"1970\" >1970<\/option><option value=\"1969\" >1969<\/option><option value=\"1968\" >1968<\/option><option value=\"1967\" >1967<\/option><option value=\"1966\" >1966<\/option><option value=\"1965\" >1965<\/option><option value=\"1964\" >1964<\/option><option value=\"1963\" >1963<\/option><option value=\"1962\" >1962<\/option><option value=\"1961\" >1961<\/option><option value=\"1960\" >1960<\/option><option value=\"1959\" >1959<\/option><option value=\"1958\" >1958<\/option><\/select>\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <!-- CONTACT -->\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_email\">\r\n                    Email\r\n                    <span class=\"text-brick-red\">*<\/span>\r\n                <\/label>\r\n\r\n                <input\r\n                    type=\"email\"\r\n                    id=\"post_email\"\r\n                    name=\"post_email\"\r\n                    value=\"\"\r\n                    placeholder=\"e.g. example@example.com\"\r\n                    aria-required=\"true\"\r\n                    required \/>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_phone\">\r\n                    Phone (Format: 123-456-7890)\r\n                <\/label>\r\n\r\n                <input\r\n                    type=\"tel\"\r\n                    id=\"post_phone\"\r\n                    pattern=\"[0-9]{3}-[0-9]{3}-[0-9]{4}\"\r\n                    name=\"post_phone\"\r\n                    value=\"\"\r\n                    placeholder=\"e.g. 123-456-7890\"\r\n                    maxlength=\"12\" \/>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <!-- MAILING ADDRESS -->\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_mailing_address1\">\r\n                    Address Line 1\r\n                <\/label>\r\n\r\n                <input\r\n                    type=\"text\"\r\n                    id=\"post_mailing_address1\"\r\n                    name=\"post_mailing_address1\"\r\n                    value=\"\" \/>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_mailing_address2\">\r\n                    Address Line 2\r\n                <\/label>\r\n\r\n                <input\r\n                    type=\"text\"\r\n                    id=\"post_mailing_address2\"\r\n                    name=\"post_mailing_address2\"\r\n                    value=\"\" \/>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_mailing_city\">\r\n                    City\r\n                <\/label>\r\n\r\n                <input\r\n                    type=\"text\"\r\n                    id=\"post_mailing_city\"\r\n                    name=\"post_mailing_city\"\r\n                    value=\"\" \/>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_mailing_state\">\r\n                    State \/ Province\r\n                <\/label>\r\n\r\n                <input\r\n                    type=\"text\"\r\n                    id=\"post_mailing_state\"\r\n                    name=\"post_mailing_state\"\r\n                    value=\"\" \/>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_mailing_zip\">\r\n                    Zip Code\r\n                <\/label>\r\n\r\n                <input\r\n                    type=\"text\"\r\n                    id=\"post_mailing_zip\"\r\n                    name=\"post_mailing_zip\"\r\n                    value=\"\" \/>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n\r\n        <div class=\"col-4\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_mailing_country\">\r\n                    Country (If outside of the USA)\r\n                <\/label>\r\n\r\n                <input\r\n                    type=\"text\"\r\n                    id=\"post_mailing_country\"\r\n                    name=\"post_mailing_country\"\r\n                    value=\"\" \/>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <!-- CONSENT -->\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-8\">\r\n\r\n            <div class=\"form-group\">\r\n\r\n                <p>\r\n\r\n                    <label for=\"post_consent\">\r\n\r\n                        <span class=\"text-brick-red\">\r\n                            *\r\n                        <\/span>\r\n\r\n                        <input\r\n                            type=\"checkbox\"\r\n                            id=\"post_consent\"\r\n                            name=\"post_consent\"\r\n                            aria-required=\"true\"\r\n                            required\r\n                             \/>\r\n\r\n                        I understand this information will be reviewed and\r\n                        published at the discretion of the review committee.\r\n\r\n                        Submissions with language deemed abusive,\r\n                        inflammatory, or otherwise inappropriate will not\r\n                        be published.\r\n\r\n                    <\/label>\r\n\r\n                <\/p>\r\n\r\n            <\/div>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <!-- UPDATE ALUMNI RECORD -->\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-8\">\r\n\r\n            <p>\r\n\r\n                <label for=\"post_update\">\r\n\r\n                    <input\r\n                        type=\"checkbox\"\r\n                        id=\"post_update\"\r\n                        name=\"post_update\"\r\n                         \/>\r\n\r\n                    Please update my alumni record with the phone number,\r\n                    email and mailing address I have provided.\r\n\r\n                    The information provided should be my primary contact\r\n                    information for CSUF updates.\r\n\r\n                <\/label>\r\n\r\n            <\/p>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <!-- RECAPTCHA -->\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-8\">\r\n            <label for=\"g-recaptcha-response\">\r\n                reCAPTCHA Verification\r\n                <span class=\"text-brick-red\">*<\/span>\r\n            <\/label>\r\n            <div\r\n                id=\"g-recaptcha\"\r\n                class=\"g-recaptcha\"\r\n                data-sitekey=\"6LdwhIUhAAAAAJv8WNikFPHy9FPayN3vzAMzK6Zf\"><\/div>\r\n\r\n\r\n            <div\r\n                id=\"client-alert-recaptcha\"\r\n                aria-live=\"assertive\"><\/div>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n\r\n    <!-- SUBMIT -->\r\n\r\n    <div class=\"row\">\r\n\r\n        <div class=\"col-6\">\r\n\r\n            <p>\r\n\r\n                <input\r\n                    id=\"post_submit\"\r\n                    type=\"submit\"\r\n                    name=\"submit\"\r\n                    value=\"Submit Class Note\" \/>\r\n\r\n            <\/p>\r\n\r\n\r\n            <div\r\n                id=\"spinner_container\"\r\n                aria-live=\"polite\"><\/div>\r\n\r\n        <\/div>\r\n\r\n    <\/div>\r\n\r\n\r\n<\/form>\r\n\r\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\r\n<title>Submit Your Class Note - Alumni Class Notes<\/title>\r\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\r\n<link rel=\"canonical\" href=\"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/\" \/>\r\n<meta property=\"og:locale\" content=\"en_US\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"Submit Your Class Note - Alumni Class Notes\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/\" \/>\r\n<meta property=\"og:site_name\" content=\"Alumni Class Notes\" \/>\r\n<meta property=\"article:modified_time\" content=\"2025-06-11T22:07:48+00:00\" \/>\r\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\r\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/\",\"url\":\"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/\",\"name\":\"Submit Your Class Note - Alumni Class Notes\",\"isPartOf\":{\"@id\":\"https:\/\/alumni.fullerton.edu\/class-notes\/#website\"},\"datePublished\":\"2022-08-08T21:10:54+00:00\",\"dateModified\":\"2025-06-11T22:07:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/alumni.fullerton.edu\/class-notes\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Submit Your Class Note\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/alumni.fullerton.edu\/class-notes\/#website\",\"url\":\"https:\/\/alumni.fullerton.edu\/class-notes\/\",\"name\":\"Alumni Class Notes\",\"description\":\"Latest Notes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/alumni.fullerton.edu\/class-notes\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"}]}<\/script>\r\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Submit Your Class Note - Alumni Class Notes","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/","og_locale":"en_US","og_type":"article","og_title":"Submit Your Class Note - Alumni Class Notes","og_url":"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/","og_site_name":"Alumni Class Notes","article_modified_time":"2025-06-11T22:07:48+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/","url":"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/","name":"Submit Your Class Note - Alumni Class Notes","isPartOf":{"@id":"https:\/\/alumni.fullerton.edu\/class-notes\/#website"},"datePublished":"2022-08-08T21:10:54+00:00","dateModified":"2025-06-11T22:07:48+00:00","breadcrumb":{"@id":"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/alumni.fullerton.edu\/class-notes\/submit\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/alumni.fullerton.edu\/class-notes\/submit\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/alumni.fullerton.edu\/class-notes\/"},{"@type":"ListItem","position":2,"name":"Submit Your Class Note"}]},{"@type":"WebSite","@id":"https:\/\/alumni.fullerton.edu\/class-notes\/#website","url":"https:\/\/alumni.fullerton.edu\/class-notes\/","name":"Alumni Class Notes","description":"Latest Notes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/alumni.fullerton.edu\/class-notes\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/alumni.fullerton.edu\/class-notes\/wp-json\/wp\/v2\/pages\/11"}],"collection":[{"href":"https:\/\/alumni.fullerton.edu\/class-notes\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/alumni.fullerton.edu\/class-notes\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/alumni.fullerton.edu\/class-notes\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/alumni.fullerton.edu\/class-notes\/wp-json\/wp\/v2\/comments?post=11"}],"version-history":[{"count":39,"href":"https:\/\/alumni.fullerton.edu\/class-notes\/wp-json\/wp\/v2\/pages\/11\/revisions"}],"predecessor-version":[{"id":830,"href":"https:\/\/alumni.fullerton.edu\/class-notes\/wp-json\/wp\/v2\/pages\/11\/revisions\/830"}],"wp:attachment":[{"href":"https:\/\/alumni.fullerton.edu\/class-notes\/wp-json\/wp\/v2\/media?parent=11"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}