Aeries Portal Parent Information • Page (2024)

Print Page

What part of the page would you like to print?

Print Entire Page Print Content Only

Skip To Main Content

Site Map

+ -

ADA

Alert

WebMail

Login

Lexington JHS

  • Our School

    About Lexington Achieving Creative Excellence (ACE) Administration Athletics AUHSD Course Catalog AUHSD Educational Pledge Calendar COR Counseling COVID-19 Site Specific Protection Plan Curriculum Letters Cypress College Dual Enrollment Health Office News/Updates Principal''s Message

    Promotion Requirements School Accountability Report Cards School Map Staff Directory/Email

  • Students

    Aeries Student Portal Bell Schedule Calendar Counseling FITNESSGRAM Information Library Policies School Map Service Learning Forms Student Help Links Student Technology Resources Teacher Student Calendar

    Title IX

  • Parents

    Aeries Parent Portal AUHSD Parent Student Handbook Bell Schedule Calendar Counseling ELAC FITNESSGRAM Information Google Apps for Education Parent Letter Parent Resources PTSA School Map School Site Council

    Staff Directory/Email Teacher Student Calendar TUPE

  • Staff

    504 Plan Aeries Teacher Connect District''s IIPP Plan Online Learning Tools Pupil Support Services Staff Directory/Email Surplus Request Form

  • Contact Us

Aeries Portal Parent Information

Anaheim Union High School District

Aeries Portal Parent Information • Page (3)

Log in to continue to Portal

Aeries Parent Portal Resources

Portal contacts - For parent and/or student portals inquiries, please email passwords@auhsd.us

Where Can I Set up an Email Account?

You can use one of the free Email providers to set up an email account, if you do not have one.

Aeries Portal Parent Information • Page (5)


Aeries Portal Parent Information • Page (6)

Aeries Portal Parent Information • Page (7)



Back to Top

We respectfully acknowledge that the Anaheim Union High School District is located on the ancestral land of the Gabrielino/Tongva people. We gratefully acknowledge those on whose ancestral homelands we gather, as well as the diverse and vibrant Native communities who make their home here today.

AUHSD NON-DISCRIMINATION STATEMENT

The Anaheim Union High School District prohibits discrimination, intimidation, harassment (including sexual harassment) or bullying based on a person’s actual or perceived ancestry, color, disability, gender, gender identity, gender expression, immigration status, nationality, race or ethnicity, religion, sex, sexual orientation, or association with a person or a group with one or more of these actual or perceived characteristics in its programs or activities and provides equal access to the Boy Scouts and other designated youth groups. The following employees have been designated to handle questions and complaints of alleged discrimination: Title IX Coordinator for Students:TitleIX@auhsd.usand (714)999-5621; Equity Compliance Officer for Students:EquityComplianceOfficer@auhsd.usand (714)999-5621; 504 Coordinator:504Coordinator@auhsd.usand (714)999-5408.

Google Maps4351 Orange Ave., Cypress, CA 90630
Phone: (714) 220-4201
Fax: (714) 761-4989

Legal Information Privacy Policy Visual Site Map Site Map Login


ies-web-v2-9 Copyright © 2001-2024. All Rights Reserved. Web Development by Cyberschool & IES, Inc.

Success!

\

\

\

\

\

Modal body text goes here.

\

\

\

\

\

    \

\

\

\

\

\

\

\

\

\

\

\ \ \

\

\

\

'; selectModal = $(selectModal); $('body').append(selectModal); $.multiSelect = function(element, options) { // plugin's default options // this is private property and is accessible only from inside the plugin var domModal = $("#multi-selector-modal"); var defaults = { modal: domModal, domTitle: domModal.find(".modal-title"), domDescription: domModal.find(".modal-description"), domSearch: domModal.find(".search-input"), domSearchButton: domModal.find(".search-input-button"), checkboxList: domModal.find(".checkbox-list"), pagination: domModal.find(".pagination"), saveButton: domModal.find(".save-button"), selectedItems: {}, selected: [],//passed in default selected items. items: [], trigger: '', title: '', description: '', saveButtonText: 'Save', // if your plugin is event-driven, you may provide callback capabilities // for its events. execute these functions before or after events of your // plugin, so that users may customize those particular events without // changing the plugin's code // onFoo: function() {} } // to avoid confusions, use "plugin" to reference the // current instance of the object var plugin = this; // this will hold the merged default, and user-provided options // plugin's properties will be available through this object like: // plugin.settings.propertyName from inside the plugin or // element.data('multiSelect').settings.propertyName from outside the plugin, // where "element" is the element the plugin is attached to; plugin.settings = {} var $element = $(element), // reference to the jQuery version of DOM element element = element; // reference to the actual DOM element // the "constructor" method that gets called when the object is created plugin.init = function() { // the plugin's final properties are the merged default and // user-provided options (if any) plugin.settings = $.extend({}, defaults, options); $.each(plugin.settings.selected, function(i, id) { plugin.settings.selectedItems[id] = true; }); // code goes here // console.log($element); // console.log(plugin.settings.domTitle); plugin.settings.trigger = $('#' + plugin.settings.trigger); plugin.settings.trigger.click(function(e) { e.preventDefault(); plugin.openModal(); }); plugin.settings.domSearchButton.click(function(e) { if(!isActive()) { return false; } alert(plugin.settings.domSearch.val()); }); $(document).on("click", ".switch-input", function(e) { if(!isActive()) { return; } var itemValue = $(e.target).val(); if(typeof plugin.settings.selectedItems[itemValue] === "undefined") { plugin.settings.selectedItems[itemValue] = true; } else { delete plugin.settings.selectedItems[itemValue]; } // console.log(plugin.settings.selectedItems); }); plugin.settings.saveButton.click(function(e) { if(!isActive()) { return; } var values = Object.keys(plugin.settings.selectedItems); // console.log(values); $element.val(values.join()); plugin.settings.modal.modal('hide'); }); } // public methods // these methods can be called like: // plugin.methodName(arg1, arg2, ... argn) from inside the plugin or // element.data('multiSelect').publicMethod(arg1, arg2, ... argn) from outside // the plugin, where "element" is the element the plugin is attached to; // a public method. for demonstration purposes only - remove it! plugin.openModal = function() { // code goes here plugin.settings.domTitle.text(plugin.settings.title); plugin.settings.domDescription.text(plugin.settings.description); plugin.settings.modal.modal('show'); activeInstance = $element; plugin.settings.domSearch.val(''); renderItems(); plugin.settings.saveButton.text(plugin.settings.saveButtonText); } // private methods // these methods can be called only from inside the plugin like: // methodName(arg1, arg2, ... argn) // a private method. for demonstration purposes only - remove it! var isActive = function() { return activeInstance == $element; } var renderItems = function() { plugin.settings.pagination.pagination({ dataSource: plugin.settings.items, pageSize: 15, callback: function(data, pagination) { // template method of yourself plugin.settings.checkboxList.empty(); $.each(data, function(i, item) { var checked = (typeof plugin.settings.selectedItems[item.id] === "undefined") ? '' : 'checked'; var template = '

\ \

\

\ \

'; template = $(template); plugin.settings.checkboxList.append(template); }); } }) } // fire up the plugin! // call the "constructor" method plugin.init(); } // add the plugin to the jQuery.fn object $.fn.multiSelect = function(options) { // iterate through the DOM elements we are attaching the plugin to return this.each(function() { // if plugin has not already been attached to the element if (undefined == $(this).data('multiSelect')) { // create a new instance of the plugin // pass the DOM element and the user-provided options as arguments var plugin = new $.multiSelect(this, options); plugin.modal = selectModal; // in the jQuery version of the element // store a reference to the plugin object // you can later access the plugin and its methods and properties like // element.data('multiSelect').publicMethod(arg1, arg2, ... argn) or // element.data('multiSelect').settings.propertyName $(this).data('multiSelect', plugin); } }); } })(jQuery);

NOT YET CHECKED

8/19/24 4:40 AM

'); $.each(issueMap[v], function(issueKey, issueObject) { $.each(issueObject.nodes, function(nodeIndex, node) { jQuery('#adaIssue-'+i+'').append("HTML: "+node.html.replace(//g,">") +"
Selector:
" + node.target + "
Attempted Render: " +node.html.replace(/script/g,'').replace(/none/g,'')+"

"); if(testmode) { jQuery(node.target).css('background-color','rgba(255,255,0,.6)').css('border','2px solid red'); } }); }); }); //ensure the UI is correct - ie if you passed before then failed right now var adaTestPass = testmode ? "TESTMODE - FAIL" : "FAIL"; jQuery('#adaModal .passOrFail').text(adaTestPass).css('background-color','#c33838'); jQuery('#adaModal .modal-header').css('background-color','#c33838'); //now show the UI for ada issues. jQuery('#adaModal .adaIssueBody').slideDown(); } else if(result.status == "pass") { //there are no ada issues var adaTestPass = testmode ? "TESTMODE - PASS" : "PASS"; jQuery('#adaModal .adaIssueBody').slideUp(); jQuery('#adaModal .passOrFail').text(adaTestPass).css('background-color','#5cb85c'); jQuery('#adaModal .modal-header').css('background-color','#5cb85c'); } else if(result.status == "ERROR") { jQuery('#adaModal .passOrFail').text("Error scanning page, please contact support@iescentral.com").css('background-color','#c33838'); jQuery('#adaModal .modal-header').css('background-color','#c33838'); } else { var adaTestPass = "Not Yet Checked" jQuery('#adaModal .adaIssueBody').slideUp(); jQuery('#adaModal .passOrFail').text(adaTestPass).css('background-color','#D96C00'); jQuery('#adaModal .modal-header').css('background-color','#D96C00'); } } cs2.ada.updateNavPageByResponse = function(response) { result = JSON.parse(response); var link = jQuery("#adaDashboardNavList ul.list-group li > a[href='"+result.url+"']").closest("li.adalineinstance"); if(result.status == "pass") { jQuery(link).find('span.adastatus').text(result.status.toUpperCase()) .removeClass('badge-pass').removeClass('badge-fail').removeClass('badge-unchecked') .addClass("badge-pass"); jQuery(link).find('span.adaerrorcount').hide(); jQuery(link).data('url', result.url); } else if(result.status == "fail") { jQuery(link).find('span.adastatus').text(result.status.toUpperCase()) .removeClass('badge-pass').removeClass('badge-fail').removeClass('badge-unchecked') .addClass("badge-fail"); jQuery(link).find('span.adaerrorcount').text('Errors: ' + (result.issueJSON).length).show(); jQuery(link).data('url', result.url); } else { jQuery(link).find('span.adastatus').text(result.status.toUpperCase()) .removeClass('badge-pass').removeClass('badge-fail').removeClass('badge-unchecked') .addClass("badge-unchecked"); jQuery(link).find('span.adaerrorcount').hide(); jQuery(link).data('url', result.url); } }

Aeries Portal Parent Information • Page (2024)
Top Articles
Sandra Lee's latest feat after cancer and heartbreak: 'Blue Ribbon Baking Championship'
Homemade Whipped Cream - Sally's Baking Addiction
Froedtert Billing Phone Number
What spices do Germans cook with?
Notary Ups Hours
Fototour verlassener Fliegerhorst Schönwald [Lost Place Brandenburg]
Mivf Mdcalc
Deshret's Spirit
Prices Way Too High Crossword Clue
10 Great Things You Might Know Troy McClure From | Topless Robot
The Binding of Isaac
Craigslist Motorcycles Orange County Ca
DoorDash, Inc. (DASH) Stock Price, Quote & News - Stock Analysis
Lake Nockamixon Fishing Report
Used Sawmill For Sale - Craigslist Near Tennessee
ZURU - XSHOT - Insanity Mad Mega Barrel - Speelgoedblaster - Met 72 pijltjes | bol
Puss In Boots: The Last Wish Showtimes Near Cinépolis Vista
Laveen Modern Dentistry And Orthodontics Laveen Village Az
Evil Dead Rise Showtimes Near Regal Sawgrass & Imax
Rs3 Eldritch Crossbow
Encyclopaedia Metallum - WikiMili, The Best Wikipedia Reader
Inbanithi Age
Deshuesadero El Pulpo
Essence Healthcare Otc 2023 Catalog
Anonib Oviedo
Is Henry Dicarlo Leaving Ktla
Motorcycle Blue Book Value Honda
Wolfwalkers 123Movies
Yayo - RimWorld Wiki
Viduthalai Movie Download
Generator Supercenter Heartland
Worthington Industries Red Jacket
J&R Cycle Villa Park
Inmate Search Disclaimer – Sheriff
The Ultimate Guide to Obtaining Bark in Conan Exiles: Tips and Tricks for the Best Results
Pnc Bank Routing Number Cincinnati
Kvoa Tv Schedule
Omnistorm Necro Diablo 4
The Best Restaurants in Dublin - The MICHELIN Guide
What Is Kik and Why Do Teenagers Love It?
Sofia With An F Mugshot
Unlock The Secrets Of "Skip The Game" Greensboro North Carolina
Huntsville Body Rubs
877-552-2666
Bank Of America Appointments Near Me
York Racecourse | Racecourses.net
How To Win The Race In Sneaky Sasquatch
Hkx File Compatibility Check Skyrim/Sse
Appsanywhere Mst
Vcuapi
Ippa 番号
Latest Posts
Heavy Whipping Cream: Nutrition, Uses, Benefits, and More
Pinside's Top 100 (without Stern)
Article information

Author: Frankie Dare

Last Updated:

Views: 6488

Rating: 4.2 / 5 (53 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Frankie Dare

Birthday: 2000-01-27

Address: Suite 313 45115 Caridad Freeway, Port Barabaraville, MS 66713

Phone: +3769542039359

Job: Sales Manager

Hobby: Baton twirling, Stand-up comedy, Leather crafting, Rugby, tabletop games, Jigsaw puzzles, Air sports

Introduction: My name is Frankie Dare, I am a funny, beautiful, proud, fair, pleasant, cheerful, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.