{"id":19868,"date":"2026-04-09T17:26:09","date_gmt":"2026-04-09T15:26:09","guid":{"rendered":"https:\/\/www.nub.edu.eg\/?page_id=19868"},"modified":"2026-04-09T20:46:02","modified_gmt":"2026-04-09T18:46:02","slug":"%d8%ae%d8%b1%d9%8a%d8%ac%d9%88-%d8%a7%d9%84%d8%a8%d9%83%d8%a7%d9%84%d9%88%d8%b1%d9%8a%d9%88%d8%b3-%d9%84%d9%8a%d8%b3%d8%a7%d9%86%d8%b3-%d8%a7%d9%84%d8%aa%d8%ad%d9%82-%d8%a7%d9%84%d8%a2%d9%86","status":"publish","type":"page","link":"https:\/\/www.nub.edu.eg\/ar\/%d8%ae%d8%b1%d9%8a%d8%ac%d9%88-%d8%a7%d9%84%d8%a8%d9%83%d8%a7%d9%84%d9%88%d8%b1%d9%8a%d9%88%d8%b3-%d9%84%d9%8a%d8%b3%d8%a7%d9%86%d8%b3-%d8%a7%d9%84%d8%aa%d8%ad%d9%82-%d8%a7%d9%84%d8%a2%d9%86\/","title":{"rendered":"(\u062e\u0631\u064a\u062c\u0648 \u0627\u0644\u0628\u0643\u0627\u0644\u0648\u0631\u064a\u0648\u0633 \/ \u0644\u064a\u0633\u0627\u0646\u0633) \u0627\u0644\u062a\u062d\u0642 \u0627\u0644\u0622\u0646"},"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_40' ><form method='post' enctype='multipart\/form-data'  id='gform_40'  action='\/ar\/wp-json\/wp\/v2\/pages\/19868' data-formid='40' novalidate><div class='gf_invisible ginput_recaptchav3' data-sitekey='6LdrlwYqAAAAANBdKtSPf_ebYypyOa-JDpWVSJ0i' data-tabindex='0'><input id=\"input_8f433423e80fb1f8de61e6b877ec8ef9\" class=\"gfield_recaptcha_response\" type=\"hidden\" name=\"input_8f433423e80fb1f8de61e6b877ec8ef9\" value=\"\"\/><\/div>\n                        <div class='gform-body gform_body'><div id='gform_fields_40' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_40_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_40_1\" ><label class='gfield_label gform-field-label' for='input_40_1'>Full Name (Arabic)<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_40_1' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_40_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_40_3\" ><label class='gfield_label gform-field-label' for='input_40_3'>Full Name (English)<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_40_3' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_40_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_40_4\" ><label class='gfield_label gform-field-label' for='input_40_4'>National ID or Passport Number<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_40_4' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_40_15\" 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_40_15\" ><label class='gfield_label gform-field-label' for='input_40_15'>Governorate<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_15' id='input_40_15' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Cairo' >Cairo<\/option><option value='Giza' >Giza<\/option><option value='Alexandria' >Alexandria<\/option><option value='Beheira' >Beheira<\/option><option value='Dakahlia' >Dakahlia<\/option><option value='Sharqia' >Sharqia<\/option><option value='Gharbia' >Gharbia<\/option><option value='Monufia' >Monufia<\/option><option value='Qalyubia' >Qalyubia<\/option><option value='Kafr El Sheikh' >Kafr El Sheikh<\/option><option value='Ismailia' >Ismailia<\/option><option value='Suez' >Suez<\/option><option value='Port Said' >Port Said<\/option><option value='Damietta' >Damietta<\/option><option value='North Sinai' >North Sinai<\/option><option value='South Sinai' >South Sinai<\/option><option value='Fayoum' >Fayoum<\/option><option value='Beni Suef' >Beni Suef<\/option><option value='Minya' >Minya<\/option><option value='Asyut' >Asyut<\/option><option value='Sohag' >Sohag<\/option><option value='Qena' >Qena<\/option><option value='Luxor' >Luxor<\/option><option value='Aswan' >Aswan<\/option><option value='Red Sea' >Red Sea<\/option><option value='New Valley' >New Valley<\/option><\/select><\/div><\/div><div id=\"field_40_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_40_13\" ><label class='gfield_label gform-field-label' for='input_40_13'>Address<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_40_13' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_40_8\" 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_40_8\" ><label class='gfield_label gform-field-label' for='input_40_8'>Phone Number<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_8' id='input_40_8' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_40_9\" 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_40_9\" ><label class='gfield_label gform-field-label' for='input_40_9'>Email<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_9' id='input_40_9' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_40_10\" 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_40_10\" ><label class='gfield_label gform-field-label' for='input_40_10'>Bachelor\u2019s Degree Obtained<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_10' id='input_40_10' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_40_11\" class=\"gfield gfield--type-number gfield--input-type-number 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_40_11\" ><label class='gfield_label gform-field-label' for='input_40_11'>Year of Graduation<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_number'><input name='input_11' id='input_40_11' type='number' step='any'   value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"  \/><\/div><\/div><div id=\"field_40_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_40_16\" ><label class='gfield_label gform-field-label' for='input_40_16'>College You Wish to Join<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_40_16' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Faculty of Nursing' >Faculty of Nursing<\/option><option value='Faculty of Fine Arts' >Faculty of Fine Arts<\/option><option value='Faculty of Business Administration' >Faculty of Business Administration<\/option><option value='Faculty of Engineering' >Faculty of Engineering<\/option><option value='Faculty of Physical Therapy' >Faculty of Physical Therapy<\/option><option value='Faculty of Computer Science' >Faculty of Computer Science<\/option><option value='Faculty of Mass Communication and Applied Languages' >Faculty of Mass Communication and Applied Languages<\/option><option value='Faculty of Medicine' >Faculty of Medicine<\/option><option value='Faculty of Oral and Dental Medicine' >Faculty of Oral and Dental Medicine<\/option><option value='Faculty of Pharmacy' >Faculty of Pharmacy<\/option><\/select><\/div><\/div><div id=\"field_40_14\" 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_40_14\" ><label class='gfield_label gform-field-label' for='input_40_14'>CAPTCHA<\/label><div id='input_40_14' 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_40\" 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_40' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_40' id='gform_theme_40' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_40' id='gform_style_settings_40' value='' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_40' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='40' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_40' value='WyJ7XCIxNVwiOltcIjdhOWZlNzNkOTk3OWNhYjkyNmQ5OTRkOGE3NzZjYjhhXCIsXCIwOWE0MGQ3Yjk0Y2U3MTc2NzNlYzQwZGU3MmNiMTE4ZFwiLFwiNDljZmQ5YWM4ZTU4YWI1ZmE1YWE1YTRiZDliMDZlNmNcIixcIjM5ODBmODJmMGRhYjk5MzEwMTg5NjE5OWUzZDA2MGMwXCIsXCIyZTFlYTM0N2U2ODEzNDE3OTNjOGE4ZDliMGZhMGZjOVwiLFwiNDBmZWYxNGYxZGEyMjM1NzAzZTZjMTIyZTYzMDZlMmRcIixcIjdhZDdiODVmN2Q5MmYzMmNkYTdiZmU2ODVjYTc2ZWVmXCIsXCI1MmE3NWUxNmNjYWQ1ZjYwODM3NjNiMzQ5MTAyNWU0ZFwiLFwiOTdhODdjZDIyZmQ0ZjczMzg1OWNjNjdiZjZhZDNmODVcIixcImViYWJjNjE2NmE5M2U3NWNkYWUxNDM5Y2U0NzAyNjJhXCIsXCJlOWU1MzMzZTliYmQyYjk5ODdjOGUwM2YxYjQwYmEzOVwiLFwiNDdhZTc4YjQyMmM4OTliODA3NjlkZTdlZTljNzAyOTdcIixcIjhhZjk1MDdjODY3M2FmNjY3ZTNkOGVlZTg0MjM3OWQ3XCIsXCIyOTVkZWMwZDdlZmI2OTA4NGJjODQ5MTQ0YTllZGY3MlwiLFwiZDQxMGJmMjM3OTgzZDhkMzU4NWNmYzI5YThhMDYyYjZcIixcIjBhNGMyNDNiMmZlZDA1MzYwMTU4MTBmNjlmYmYzYWMxXCIsXCIxN2ZmMWNmZGE2MDllZGFkM2I0MWEzZmJiYWU1MzEyNFwiLFwiZmM0YzFmMzk4NzUxY2NmZjVlMzRhM2YwNDc3NGQwNTlcIixcImJmOTlkNDYyY2FjYzFhZGE2MDQ5OTVkOWVlYTcwY2NhXCIsXCIwYTg5MmIyMGNhYTQ4YzhjNmE2YzQ0YjgyNTA3MTUzYVwiLFwiNmVlNmY3ZjQ1NTRkOWI3NzZkMzU4NzdhNWNlZDJhOWNcIixcIjJjZDZjZjNiOGE2ZDgxMDFmMTg2ZjgxMWYzOGExN2IxXCIsXCI2NjdjZDdkNWY0MDBhMmNjNzE5NjUwNmMxYWNiOGI5ZlwiLFwiMDk3ZDJiYTc1ZmM3MWM0YjE3OGFlZDE2MzVmZWI3ZGZcIixcIjg0YTBlN2RkMTI0OGY5MDA2NmZiZTI3ZjkyODU3MGIwXCIsXCIxMzRhYzg0OGMzYjQ4ZGJjMTQxYmI4ZjNhMjgxN2YyNVwiXSxcIjE2XCI6W1wiYzA2YzhmZDQ1MTc0NTYxZWFhMmVmMDg3ODk5ZjM4OTNcIixcIjNlMjk2YTEwNGNlN2MwNzFmMWUwZDQ2ZTJiYTA3MWExXCIsXCI3OWNjOTc3YTcyNGRmMzg0YzM0N2QyZThmYzdiMDNkOFwiLFwiN2MwZTUyMWM0ZTQ5NDcyYTQxZmZhYmU5NWRlZjIyMmFcIixcImVmYzE1MTNhNjgzZmU1N2FlNjRlODVkMzRkYzZiOWY1XCIsXCI4Yjc4Mzc0YTFmNjM2NTRhMGVjN2NiOWI3OWY4ZDZhMFwiLFwiMTBhNjk4ODliZmU2MmJhMjJiODk1ZTYwZmU3YmFjYThcIixcIjhjYmQyNmE2YzQyNzQxYmVlMGZmNzRhNzMzOGZiYTk0XCIsXCIwNTk1MTc3YTE0N2E4ZWU3MWFkYzg2OTkwN2Q4YzhjYVwiLFwiNDU4OTdkNGE3MmQyZjJiYWM5Yzc0MWM1MjUwZjU5N2VcIl19IiwiNmRjY2VjNGRmNjAwYTc4ZDM1MDY4NzJjMzM0ZTQ2ZjQiXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_40' id='gform_target_page_number_40' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_40' id='gform_source_page_number_40' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 40, 'https:\/\/www.nub.edu.eg\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_40').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_40');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_40').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_40').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_40').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_40').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_40').val();gformInitSpinner( 40, 'https:\/\/www.nub.edu.eg\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [40, current_page]);window['gf_submitting_40'] = 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_40').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [40]);window['gf_submitting_40'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_40').text());}else{jQuery('#gform_40').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"40\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);                if (event && event.defaultPrevented) {                return;         }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_40\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_40\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_40\" );        let postRenderFired = false;                function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            jQuery( document ).trigger( 'gform_post_render', [40, current_page] );            gform.utils.trigger( { event: 'gform\/postRender', native: false, data: { formId: 40, currentPage: current_page } } );            gform.utils.trigger( { event: 'gform\/post_render', native: false, data: { formId: 40, 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\n\n\n\n<p><\/p>\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-sections.php","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","footnotes":""},"class_list":["post-19868","page","type-page","status-publish","hentry"],"acf":[],"spectra_custom_meta":{"_edit_lock":["1775760613:2"],"_wpml_word_count":["{\"total\":4,\"to_translate\":{\"en\":4}}"],"_wp_page_template":["template-sections.php"],"_uag_custom_page_level_css":[""],"footnotes":[""],"_edit_last":["2"],"section_title":["\u0627\u0644\u062a\u062d\u0642 \u0627\u0644\u0622\u0646"],"_section_title":["field_5f8c8f8a08f9b"],"section_background":[""],"_section_background":["field_5f8c9638c076b"],"page_file":[""],"_page_file":["field_5f8af8a210b6c"],"repeating_sections":[""],"_repeating_sections":["field_5f8db2fac0135"],"_wpml_media_duplicate":["1"],"_wpml_media_featured":["1"],"_last_translation_edit_mode":["native-editor"],"_uag_page_assets":["a:9:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";s:18:\"current_block_list\";a:2:{i:0;s:14:\"core\/shortcode\";i:1;s:14:\"core\/paragraph\";}s:8:\"uag_flag\";b:0;s:11:\"uag_version\";s:10:\"1775766540\";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\/19868","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=19868"}],"version-history":[{"count":5,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/pages\/19868\/revisions"}],"predecessor-version":[{"id":19879,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/pages\/19868\/revisions\/19879"}],"wp:attachment":[{"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/media?parent=19868"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}