{"id":19085,"date":"2025-08-02T07:38:22","date_gmt":"2025-08-02T05:38:22","guid":{"rendered":"https:\/\/www.nub.edu.eg\/?page_id=19085"},"modified":"2025-08-02T07:57:54","modified_gmt":"2025-08-02T05:57:54","slug":"%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%d8%aa-%d8%a7%d9%84%d8%b9%d9%84%d9%8a%d8%a7-%d8%a7%d9%84%d9%85%d9%87","status":"publish","type":"page","link":"https:\/\/www.nub.edu.eg\/ar\/%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%d8%aa-%d8%a7%d9%84%d8%b9%d9%84%d9%8a%d8%a7-%d8%a7%d9%84%d9%85%d9%87\/","title":{"rendered":"\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\u0645\u0647\u0646\u064a\u0629"},"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_35' style='display:none'><form method='post' enctype='multipart\/form-data'  id='gform_35'  action='\/ar\/wp-json\/wp\/v2\/pages\/19085' data-formid='35' novalidate><div class='gf_invisible ginput_recaptchav3' data-sitekey='6LdrlwYqAAAAANBdKtSPf_ebYypyOa-JDpWVSJ0i' data-tabindex='0'><input id=\"input_59d7ad2241c06971f43168962c3bad5b\" class=\"gfield_recaptcha_response\" type=\"hidden\" name=\"input_59d7ad2241c06971f43168962c3bad5b\" value=\"\"\/><\/div>\n                        <div class='gform-body gform_body'><div id='gform_fields_35' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_35_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_35_1\" ><label class='gfield_label gform-field-label' for='input_35_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_35_1' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_35_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_35_3\" ><label class='gfield_label gform-field-label' for='input_35_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_35_3' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_35_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_35_4\" ><label class='gfield_label gform-field-label' for='input_35_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_35_4' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_35_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_35_5\" ><label class='gfield_label gform-field-label' for='input_35_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_35_5' type='text' value='' class='datepicker gform-datepicker mdy datepicker_with_icon gdatepicker_with_icon'   placeholder='mm\/dd\/yyyy' aria-describedby=\"input_35_5_date_format\" aria-invalid=\"false\" aria-required=\"true\"\/>\n                            <span id='input_35_5_date_format' class='screen-reader-text'>MM slash DD slash YYYY<\/span>\n                        <\/div>\n                        <input type='hidden' id='gforms_calendar_icon_input_35_5' class='gform_hidden' value='https:\/\/www.nub.edu.eg\/wp-content\/plugins\/gravityforms\/images\/datepicker\/datepicker.svg'\/><\/div><div id=\"field_35_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_35_6\" ><label class='gfield_label gform-field-label' for='input_35_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_35_6' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_35_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_35_7\" ><label class='gfield_label gform-field-label' for='input_35_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_35_7' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_35_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_35_8\" ><label class='gfield_label gform-field-label' for='input_35_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_35_8' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_35_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_35_9\" ><label class='gfield_label gform-field-label' for='input_35_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_35_9' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_35_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_35_10\" ><label class='gfield_label gform-field-label' for='input_35_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_35_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_35_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_35_11\" ><label class='gfield_label gform-field-label' for='input_35_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_35_11' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_35_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_35_12\" ><label class='gfield_label gform-field-label' for='input_35_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_35_12' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_35_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_35_14\" ><label class='gfield_label gform-field-label' for='input_35_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_35_14' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_35_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_35_15\" ><label class='gfield_label gform-field-label' for='input_35_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_35_15' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_35_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_35_13\" ><label class='gfield_label gform-field-label' for='input_35_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_35_13' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_35_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_35_16\" ><label class='gfield_label gform-field-label' for='input_35_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_35_16' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='\u0627\u0644\u062f\u0628\u0644\u0648\u0645' >\u0627\u0644\u062f\u0628\u0644\u0648\u0645<\/option><option value='\u0627\u0644\u0645\u0627\u062c\u0633\u062a\u064a\u0631' >\u0627\u0644\u0645\u0627\u062c\u0633\u062a\u064a\u0631<\/option><\/select><\/div><\/div><div id=\"field_35_17\" 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_35_17\" ><label class='gfield_label gform-field-label' for='input_35_17'>\u0627\u0644\u062f\u0628\u0644\u0648\u0645 (\u0627\u0644\u0631\u063a\u0628\u0629 \u0627\u0644\u0623\u0648\u0644\u0649)<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_17' id='input_35_17' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='\u0627\u0644\u0645\u062d\u0627\u0633\u0628\u0629 \u0648\u0627\u0644\u0645\u0631\u0627\u062c\u0639\u0629' >\u0627\u0644\u0645\u062d\u0627\u0633\u0628\u0629 \u0648\u0627\u0644\u0645\u0631\u0627\u062c\u0639\u0629<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0646\u0634\u0622\u062a \u0627\u0644\u0637\u0628\u064a\u0629' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0646\u0634\u0622\u062a \u0627\u0644\u0637\u0628\u064a\u0629<\/option><\/select><\/div><\/div><div id=\"field_35_20\" 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_35_20\" ><label class='gfield_label gform-field-label' for='input_35_20'>\u0627\u0644\u062f\u0628\u0644\u0648\u0645 (\u0627\u0644\u0631\u063a\u0628\u0629 \u0627\u0644\u062b\u0627\u0646\u064a\u0629)<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_20' id='input_35_20' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='\u0627\u0644\u0645\u062d\u0627\u0633\u0628\u0629 \u0648\u0627\u0644\u0645\u0631\u0627\u062c\u0639\u0629' >\u0627\u0644\u0645\u062d\u0627\u0633\u0628\u0629 \u0648\u0627\u0644\u0645\u0631\u0627\u062c\u0639\u0629<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0646\u0634\u0622\u062a \u0627\u0644\u0637\u0628\u064a\u0629' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0646\u0634\u0622\u062a \u0627\u0644\u0637\u0628\u064a\u0629<\/option><\/select><\/div><\/div><div id=\"field_35_18\" 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_35_18\" ><label class='gfield_label gform-field-label' for='input_35_18'>(\u0627\u0644\u0631\u063a\u0628\u0629 \u0627\u0644\u0623\u0648\u0644\u0649) \u0627\u0644\u0645\u0627\u062c\u0633\u062a\u064a\u0631<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_18' id='input_35_18' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='\u0645\u0627\u062c\u0633\u062a\u064a\u0631 \u0627\u0644\u0645\u062d\u0627\u0633\u0628\u0629 (MPA)' >\u0645\u0627\u062c\u0633\u062a\u064a\u0631 \u0627\u0644\u0645\u062d\u0627\u0633\u0628\u0629 (MPA)<\/option><option value='\u0645\u0627\u062c\u0633\u062a\u064a\u0631 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 (MBA)' >\u0645\u0627\u062c\u0633\u062a\u064a\u0631 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 (MBA)<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0627\u0644\u062a\u0633\u0648\u064a\u0642 \u0648\u0627\u0644\u062a\u062c\u0627\u0631\u0629 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0627\u0644\u062a\u0633\u0648\u064a\u0642 \u0648\u0627\u0644\u062a\u062c\u0627\u0631\u0629 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0648\u0627\u0631\u062f \u0627\u0644\u0628\u0634\u0631\u064a\u0629' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0648\u0627\u0631\u062f \u0627\u0644\u0628\u0634\u0631\u064a\u0629<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0646\u0634\u0622\u062a \u0627\u0644\u0637\u0628\u064a\u0629' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0646\u0634\u0622\u062a \u0627\u0644\u0637\u0628\u064a\u0629<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639\u0627\u062a' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639\u0627\u062a<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0627\u0644\u062a\u0645\u0648\u064a\u0644 \u0648\u0627\u0644\u0627\u0633\u062a\u062b\u0645\u0627\u0631' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0627\u0644\u062a\u0645\u0648\u064a\u0644 \u0648\u0627\u0644\u0627\u0633\u062a\u062b\u0645\u0627\u0631<\/option><\/select><\/div><\/div><div id=\"field_35_21\" 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_35_21\" ><label class='gfield_label gform-field-label' for='input_35_21'>(\u0627\u0644\u0631\u063a\u0628\u0629 \u0627\u0644\u062b\u0627\u0646\u064a\u0629) \u0627\u0644\u0645\u0627\u062c\u0633\u062a\u064a\u0631<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_21' id='input_35_21' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='\u0645\u0627\u062c\u0633\u062a\u064a\u0631 \u0627\u0644\u0645\u062d\u0627\u0633\u0628\u0629 (MPA)' >\u0645\u0627\u062c\u0633\u062a\u064a\u0631 \u0627\u0644\u0645\u062d\u0627\u0633\u0628\u0629 (MPA)<\/option><option value='\u0645\u0627\u062c\u0633\u062a\u064a\u0631 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 (MBA)' >\u0645\u0627\u062c\u0633\u062a\u064a\u0631 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 (MBA)<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0627\u0644\u062a\u0633\u0648\u064a\u0642 \u0648\u0627\u0644\u062a\u062c\u0627\u0631\u0629 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0627\u0644\u062a\u0633\u0648\u064a\u0642 \u0648\u0627\u0644\u062a\u062c\u0627\u0631\u0629 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u0629<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0648\u0627\u0631\u062f \u0627\u0644\u0628\u0634\u0631\u064a\u0629' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0648\u0627\u0631\u062f \u0627\u0644\u0628\u0634\u0631\u064a\u0629<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0646\u0634\u0622\u062a \u0627\u0644\u0637\u0628\u064a\u0629' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0646\u0634\u0622\u062a \u0627\u0644\u0637\u0628\u064a\u0629<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639\u0627\u062a' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0645\u0634\u0631\u0648\u0639\u0627\u062a<\/option><option value='\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0627\u0644\u062a\u0645\u0648\u064a\u0644 \u0648\u0627\u0644\u0627\u0633\u062a\u062b\u0645\u0627\u0631' >\u0625\u062f\u0627\u0631\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u062a\u062e\u0635\u0635 \u0627\u0644\u062a\u0645\u0648\u064a\u0644 \u0648\u0627\u0644\u0627\u0633\u062a\u062b\u0645\u0627\u0631<\/option><\/select><\/div><\/div><div id=\"field_35_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_35_19\" ><label class='gfield_label gform-field-label' for='input_35_19'>CAPTCHA<\/label><div id='input_35_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_35\" 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_35' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_35' id='gform_theme_35' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_35' id='gform_style_settings_35' value='{\"formId\":\"35\",\"title\":false,\"description\":false,\"inputPrimaryColor\":\"#204ce5\"}' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_35' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='35' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_35' value='WyJ7XCIxMFwiOltcImZkYjQxMmRlN2E2YTdhNGQ2MGVjY2Y1MDU1YWM3ZDllXCIsXCJkNTcxMTljYmFmNzI1MzdlNmYzMDUwZjE3MmVhNTMxYlwiXSxcIjE2XCI6W1wiMWE1Y2M4ODg5NTU1YzMzMjdlMTI2MDAzNDhlMjg0NzNcIixcIjg2ZmU5OTI2Mjk3Y2MzN2E2YTAyYmZjMzg2ODQzN2UyXCJdLFwiMTdcIjpbXCIwNmFkYzdiOWRhOTU1Mzg1NmUyODUwZGVkMGM4ZTI5Y1wiLFwiYzU2NGM2NGQ3NGFiYTg1Nzk4ODU1NzZiNWRlZWJhNWFcIixcIjRiZDNkYjQxOGE4MjcxY2E5MjU4OTkzYzJkNTkzODU2XCJdLFwiMjBcIjpbXCIwNmFkYzdiOWRhOTU1Mzg1NmUyODUwZGVkMGM4ZTI5Y1wiLFwiYzU2NGM2NGQ3NGFiYTg1Nzk4ODU1NzZiNWRlZWJhNWFcIixcIjRiZDNkYjQxOGE4MjcxY2E5MjU4OTkzYzJkNTkzODU2XCJdLFwiMThcIjpbXCJmYzhmMGI3OTBjMGI0OTU2OGZmMGZhYjhjNTgzNzlkNlwiLFwiZmFmZjY4NjBjMmE0YTVhZTQ2MDhmZjU3NTNlM2E3ZGRcIixcIjE4YjY4ZGIzNTU2YjA5MjVmOGU1ODFkYjM4M2E2ZjlkXCIsXCJiZjllNjg0Y2VlNGQxMTdmNmU0NmFlZjRkOTE3MDgxN1wiLFwiYTNlYTdiZDliZjY5ZTI4Nzc4ZjI3NzkyZjg4NjE3ZWFcIixcImIzN2QzYjI5OTExZTVlMTEzMDk4YmY5YjcxYzg5NDc4XCIsXCI4ZjBkMWRkNWE4ZGIwYTA4OGI2NTg1NTg1MDE4MTFlYVwiXSxcIjIxXCI6W1wiZmM4ZjBiNzkwYzBiNDk1NjhmZjBmYWI4YzU4Mzc5ZDZcIixcImZhZmY2ODYwYzJhNGE1YWU0NjA4ZmY1NzUzZTNhN2RkXCIsXCIxOGI2OGRiMzU1NmIwOTI1ZjhlNTgxZGIzODNhNmY5ZFwiLFwiYmY5ZTY4NGNlZTRkMTE3ZjZlNDZhZWY0ZDkxNzA4MTdcIixcImEzZWE3YmQ5YmY2OWUyODc3OGYyNzc5MmY4ODYxN2VhXCIsXCJiMzdkM2IyOTkxMWU1ZTExMzA5OGJmOWI3MWM4OTQ3OFwiLFwiOGYwZDFkZDVhOGRiMGEwODhiNjU4NTU4NTAxODExZWFcIl19IiwiZGUzMjBiZTA3NmEzNDViZmIyNTAzMzNiMWE2NDA4OGEiXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_35' id='gform_target_page_number_35' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_35' id='gform_source_page_number_35' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 35, 'https:\/\/www.nub.edu.eg\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_35').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_35');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_35').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){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_35').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_35').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_35').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_35').val();gformInitSpinner( 35, 'https:\/\/www.nub.edu.eg\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [35, current_page]);window['gf_submitting_35'] = 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_35').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [35]);window['gf_submitting_35'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_35').text());}else{jQuery('#gform_35').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"35\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);                if (event && event.defaultPrevented) {                return;         }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_35\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_35\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_35\" );        let postRenderFired = false;                function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            jQuery( document ).trigger( 'gform_post_render', [35, current_page] );            gform.utils.trigger( { event: 'gform\/postRender', native: false, data: { formId: 35, currentPage: current_page } } );            gform.utils.trigger( { event: 'gform\/post_render', native: false, data: { formId: 35, 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-19085","page","type-page","status-publish","hentry"],"acf":[],"spectra_custom_meta":{"_edit_lock":["1775901779:2"],"_wpml_word_count":["{\"total\":10,\"to_translate\":{\"en\":10}}"],"_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":["\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\u0645\u0647\u0646\u064a\u0629"],"_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:\"1776170806\";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\/19085","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=19085"}],"version-history":[{"count":2,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/pages\/19085\/revisions"}],"predecessor-version":[{"id":19097,"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/pages\/19085\/revisions\/19097"}],"wp:attachment":[{"href":"https:\/\/www.nub.edu.eg\/ar\/wp-json\/wp\/v2\/media?parent=19085"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}