{"id":19089,"date":"2025-08-02T07:40:44","date_gmt":"2025-08-02T05:40:44","guid":{"rendered":"https:\/\/www.nub.edu.eg\/?page_id=19089"},"modified":"2025-08-13T07:23:28","modified_gmt":"2025-08-13T05:23:28","slug":"%d9%83%d9%84%d9%8a%d8%a9-%d8%a7%d9%84%d8%b5%d9%8a%d8%af%d9%84%d8%a9-%d8%a7%d8%b3%d8%aa%d9%85%d8%a7%d8%b1%d8%a9-%d8%a7%d9%84%d8%aa%d8%b3%d8%ac%d9%8a%d9%84-%d9%84%d9%84%d8%af%d8%b1%d8%a7%d8%b3%d8%a7","status":"publish","type":"page","link":"https:\/\/www.nub.edu.eg\/ar\/%d9%83%d9%84%d9%8a%d8%a9-%d8%a7%d9%84%d8%b5%d9%8a%d8%af%d9%84%d8%a9-%d8%a7%d8%b3%d8%aa%d9%85%d8%a7%d8%b1%d8%a9-%d8%a7%d9%84%d8%aa%d8%b3%d8%ac%d9%8a%d9%84-%d9%84%d9%84%d8%af%d8%b1%d8%a7%d8%b3%d8%a7\/","title":{"rendered":"\u0643\u0644\u064a\u0629 \u0627\u0644\u0635\u064a\u062f\u0644\u0629 &#8211; \u0627\u0633\u062a\u0645\u0627\u0631\u0629 \u0627\u0644\u062a\u0633\u062c\u064a\u0644 \u0644\u0644\u062f\u0631\u0627\u0633\u0627\u062a \u0627\u0644\u0639\u0644\u064a\u0627 (\u0627\u0644\u062f\u0628\u0644\u0648\u0645 \u0627\u0644\u0645\u0647\u0646\u064a)"},"content":{"rendered":"<script type=\"text\/javascript\">\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 3.1 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<\/script>\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_36' ><form method='post' enctype='multipart\/form-data'  id='gform_36'  action='\/ar\/wp-json\/wp\/v2\/pages\/19089' data-formid='36' novalidate><div class='gf_invisible ginput_recaptchav3' data-sitekey='6LdrlwYqAAAAANBdKtSPf_ebYypyOa-JDpWVSJ0i' data-tabindex='0'><input id=\"input_7cf573afec7c4a86ab56e71d35325bd2\" class=\"gfield_recaptcha_response\" type=\"hidden\" name=\"input_7cf573afec7c4a86ab56e71d35325bd2\" value=\"\"\/><\/div>\n                        <div class='gform-body gform_body'><div id='gform_fields_36' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_36_1\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_1\" ><label class='gfield_label gform-field-label' for='input_36_1'>\u202b\u202b\u202b\u0627\u0644\u0627\u0633\u0645\u202c \u0631\u0628\u0627\u0639\u064a\u202c \u202b\u202a:\u202c\u202c<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_1' id='input_36_1' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_36_3\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_3\" ><label class='gfield_label gform-field-label' for='input_36_3'>\u202b\u0627\u0644\u0631\u0642\u0645 \u202c\u202b\u0627\u0644\u0642\u0648\u0645\u064a\u202a:\u202c\u202c<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_3' id='input_36_3' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_36_4\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_4\" ><label class='gfield_label gform-field-label' for='input_36_4'>\u202b\u0645\u062d\u0644 \u202c\u202b\u0627\u0644\u0645\u064a\u0644\u0627\u062f\u202c \u202b\u202a:\u202c<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_4' id='input_36_4' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_36_5\" class=\"gfield gfield--type-date gfield--input-type-date gfield--input-type-datepicker gfield--datepicker-default-icon gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_5\" ><label class='gfield_label gform-field-label' for='input_36_5'>\u202b\u062a\u0627\u0631\u064a\u062e \u202c\u202b\u0627\u0644\u0645\u064a\u0644\u0627\u062f\u202c \u202b\u202a:\u202c\u202c<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_date'>\n                            <input name='input_5' id='input_36_5' type='text' value='' class='datepicker gform-datepicker mdy datepicker_with_icon gdatepicker_with_icon'   placeholder='mm\/dd\/yyyy' aria-describedby=\"input_36_5_date_format\" aria-invalid=\"false\" aria-required=\"true\"\/>\n                            <span id='input_36_5_date_format' class='screen-reader-text'>MM slash DD slash YYYY<\/span>\n                        <\/div>\n                        <input type='hidden' id='gforms_calendar_icon_input_36_5' class='gform_hidden' value='https:\/\/www.nub.edu.eg\/wp-content\/plugins\/gravityforms\/images\/datepicker\/datepicker.svg'\/><\/div><div id=\"field_36_6\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-third gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_6\" ><label class='gfield_label gform-field-label' for='input_36_6'>\u0627\u0644\u0645\u0624\u0647\u0644 \u0627\u0644\u062f\u0631\u0627\u0633\u064a:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_6' id='input_36_6' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_36_7\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-third gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_7\" ><label class='gfield_label gform-field-label' for='input_36_7'>\u0627\u0644\u0643\u0644\u064a\u0629:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_7' id='input_36_7' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_36_8\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-third gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_8\" ><label class='gfield_label gform-field-label' for='input_36_8'>\u0627\u0644\u062c\u0627\u0645\u0639\u0629:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_8' id='input_36_8' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_36_9\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_9\" ><label class='gfield_label gform-field-label' for='input_36_9'>\u0627\u0644\u062a\u0642\u062f\u064a\u0631 \/ \u0627\u0644\u0645\u0639\u062f\u0644 \u0627\u0644\u062a\u0631\u0627\u0643\u0645\u064a:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_9' id='input_36_9' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_36_10\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_10\" ><label class='gfield_label gform-field-label' for='input_36_10'>\u0627\u0644\u0646\u0648\u0639:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_10' id='input_36_10' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='\u0630\u0643\u0631' >\u0630\u0643\u0631<\/option><option value='\u0623\u0646\u062b\u0649' >\u0623\u0646\u062b\u0649<\/option><\/select><\/div><\/div><div id=\"field_36_11\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_11\" ><label class='gfield_label gform-field-label' for='input_36_11'>\u0627\u0644\u062c\u0646\u0633\u064a\u0629:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_11' id='input_36_11' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_36_12\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_12\" ><label class='gfield_label gform-field-label' for='input_36_12'>\u0627\u0644\u0648\u0638\u064a\u0641\u0629 \u0627\u0644\u062d\u0627\u0644\u064a\u0629:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_12' id='input_36_12' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_36_14\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_14\" ><label class='gfield_label gform-field-label' for='input_36_14'>\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_14' id='input_36_14' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_36_15\" class=\"gfield gfield--type-phone gfield--input-type-phone gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_15\" ><label class='gfield_label gform-field-label' for='input_36_15'>\u0631\u0642\u0645 \u0627\u0644\u0645\u0648\u0628\u0627\u064a\u0644 (\u0648\u0627\u062a\u0633\u0627\u0628):<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_phone'><input name='input_15' id='input_36_15' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_36_13\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_13\" ><label class='gfield_label gform-field-label' for='input_36_13'>\u0627\u0644\u0639\u0646\u0648\u0627\u0646:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_13' id='input_36_13' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_36_16\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_16\" ><label class='gfield_label gform-field-label' for='input_36_16'>\u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c \u0627\u0644\u0631\u0627\u063a\u0628 \u0641\u064a \u0627\u0644\u062a\u0633\u062c\u064a\u0644 \u0628\u0647:<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_16' id='input_36_16' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='\u062f\u0628\u0644\u0648\u0645 \u0645\u0633\u062a\u062d\u0636\u0631\u0627\u062a \u0627\u0644\u062a\u062c\u0645\u064a\u0644 (Cosmetics)' >\u062f\u0628\u0644\u0648\u0645 \u0645\u0633\u062a\u062d\u0636\u0631\u0627\u062a \u0627\u0644\u062a\u062c\u0645\u064a\u0644 (Cosmetics)<\/option><option value='\u062f\u0628\u0644\u0648\u0645 \u0627\u0644\u062a\u063a\u0630\u064a\u0629 \u0627\u0644\u0639\u0644\u0627\u062c\u064a\u0629 (Therapeutic nutrition)' >\u062f\u0628\u0644\u0648\u0645 \u0627\u0644\u062a\u063a\u0630\u064a\u0629 \u0627\u0644\u0639\u0644\u0627\u062c\u064a\u0629 (Therapeutic nutrition)<\/option><\/select><\/div><\/div><div id=\"field_36_19\" class=\"gfield gfield--type-captcha gfield--input-type-captcha gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-js-reload=\"field_36_19\" ><label class='gfield_label gform-field-label' for='input_36_19'>CAPTCHA<\/label><div id='input_36_19' class='ginput_container ginput_recaptcha' data-sitekey='6Leq7gUdAAAAAIwoyUBuJV2NMsLSzSM_YHRJxY1o'  data-theme='light' data-tabindex='0'  data-badge=''><\/div><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type=\"submit\" id=\"gform_submit_button_36\" class=\"gform_button button button-primary\" onclick=\"gform.submission.handleButtonClick(this);\" value=\"Submit\"> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_36' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_36' id='gform_theme_36' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_36' id='gform_style_settings_36' value='{\"formId\":\"36\",\"title\":false,\"description\":false,\"inputPrimaryColor\":\"#204ce5\"}' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_36' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='36' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_36' value='WyJ7XCIxMFwiOltcImZkYjQxMmRlN2E2YTdhNGQ2MGVjY2Y1MDU1YWM3ZDllXCIsXCJkNTcxMTljYmFmNzI1MzdlNmYzMDUwZjE3MmVhNTMxYlwiXSxcIjE2XCI6W1wiYjFkMTFkNTM5MDAzOTc2NjEwYTY1ZTgyOGU5OWZlYzZcIixcIjk2N2Q0NWZmNTE1OTJkMjEwNThhNjExNDJjYmQzNjZiXCJdfSIsIjJmMjlkOGJkYjBmMjA0YWZkNDUwYTczYjVjZGVkNmJiIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_36' id='gform_target_page_number_36' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_36' id='gform_source_page_number_36' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 36, 'https:\/\/www.nub.edu.eg\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_36').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_36');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_36').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_36').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_36').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_36').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_36').val();gformInitSpinner( 36, 'https:\/\/www.nub.edu.eg\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [36, current_page]);window['gf_submitting_36'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_36').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [36]);window['gf_submitting_36'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_36').text());}else{jQuery('#gform_36').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"36\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);                if (event && event.defaultPrevented) {                return;         }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_36\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_36\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_36\" );        let postRenderFired = false;                function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            jQuery( document ).trigger( 'gform_post_render', [36, current_page] );            gform.utils.trigger( { event: 'gform\/postRender', native: false, data: { formId: 36, currentPage: current_page } } );            gform.utils.trigger( { event: 'gform\/post_render', native: false, data: { formId: 36, currentPage: current_page } } );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template-simple.php","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","footnotes":""},"class_list":["post-19089","page","type-page","status-publish","hentry"],"acf":[],"spectra_custom_meta":{"_edit_lock":["1755065182:2"],"_wpml_word_count":["{\"total\":0,\"to_translate\":{\"ar\":13,\"en\":13}}"],"_edit_last":["2"],"_wp_page_template":["template-simple.php"],"_wpml_media_duplicate":["1"],"_wpml_media_featured":["1"],"_last_translation_edit_mode":["native-editor"],"_uag_custom_page_level_css":[""],"footnotes":[""],"section_title":["\u0643\u0644\u064a\u0629 \u0627\u0644\u0635\u064a\u062f\u0644\u0629 - \u0627\u0633\u062a\u0645\u0627\u0631\u0629 \u0627\u0644\u062a\u0633\u062c\u064a\u0644 \u0644\u0644\u062f\u0631\u0627\u0633\u0627\u062a \u0627\u0644\u0639\u0644\u064a\u0627 (\u0627\u0644\u062f\u0628\u0644\u0648\u0645 \u0627\u0644\u0645\u0647\u0646\u064a)"],"_section_title":["field_5f8c8f8a08f9b"],"section_background":[""],"_section_background":["field_5f8c9638c076b"],"page_file":[""],"_page_file":["field_5f8af8a210b6c"],"_uag_page_assets":["a:9:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";s:18:\"current_block_list\";a:1:{i:0;s:17:\"gravityforms\/form\";}s:8:\"uag_flag\";b:0;s:11:\"uag_version\";s:10:\"1774860225\";s:6:\"gfonts\";a:0:{}s:10:\"gfonts_url\";s:0:\"\";s:12:\"gfonts_files\";a:0:{}s:14:\"uag_faq_layout\";b:0;}"]},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"home-blocks-size":false,"programs-list":false,"block-news-events":false,"block-news-big":false,"page-head":false,"gform-image-choice-sm":false,"gform-image-choice-md":false,"gform-image-choice-lg":false},"uagb_author_info":{"display_name":"NUB","author_link":"https:\/\/www.nub.edu.eg\/ar\/author\/nubadmin\/"},"uagb_comment_info":0,"uagb_excerpt":null,"_links":{"self":[{"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/pages\/19089","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/comments?post=19089"}],"version-history":[{"count":2,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/pages\/19089\/revisions"}],"predecessor-version":[{"id":19099,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/pages\/19089\/revisions\/19099"}],"wp:attachment":[{"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/media?parent=19089"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}