import React, { useState } from "react" import type { ComponentType } from "react" import { Eye, EyeSlash } from "phosphor-react" const brandColor = "#6D24FF" export function withPasswordProtection(Component): ComponentType { return (props) => { const PASSWORDS = ["password", "password2"] const [authenticated, setAuthenticated] = useState(false) const [showPassword, setShowPassword] = useState(false) const handlePasswordSubmit = (e) => { e.preventDefault() const inputPassword = e.target.elements.password.value if (PASSWORDS.includes(inputPassword)) { setAuthenticated(true) } else { alert("Incorrect password") } } if (!authenticated) { return (
) } return } }

AR Council

AR Council

AR Council

The Association Representative (AR) Council functions as a crucial link between MVEA leadership and educators within each school building. Each D51 school has at least one AR appointed to their building that attends monthly AR Council meetings. The AR Council serves to relay information, address concerns, and advocate for teachers' rights and interests.

The Association Representative (AR) Council functions as a crucial link between MVEA leadership and educators within each school building. Each D51 school has at least one AR appointed to their building that attends monthly AR Council meetings. The AR Council serves to relay information, address concerns, and advocate for teachers' rights and interests.

Executive Council

📷 GJ Daily Sentinel

📷 GJ Daily Sentinel

📷 GJ Daily Sentinel

📷 GJ Daily Sentinel

📷 GJ Daily Sentinel

Executive Council

📷 GJ Daily Sentinel

📷 GJ Daily Sentinel

📷 GJ Daily Sentinel

📷 GJ Daily Sentinel

📷 GJ Daily Sentinel

Executive Council

📷 GJ Daily Sentinel

📷 GJ Daily Sentinel

📷 GJ Daily Sentinel

📷 GJ Daily Sentinel

📷 GJ Daily Sentinel

The Executive Council is comprised of elected officers and Area Directors (ADs) and is responsible for formulating policies, making strategic decisions, and representing the collective interests of educators, ensuring effective leadership and advocacy.

The Executive Council is comprised of elected officers and Area Directors (ADs) and is responsible for formulating policies, making strategic decisions, and representing the collective interests of educators, ensuring effective leadership and advocacy.

Learn more about our Executive Council

import React, { useState } from "react" import type { ComponentType } from "react" import { Eye, EyeSlash } from "phosphor-react" const brandColor = "#6D24FF" export function withPasswordProtection(Component): ComponentType { return (props) => { const PASSWORDS = ["password", "password2"] const [authenticated, setAuthenticated] = useState(false) const [showPassword, setShowPassword] = useState(false) const handlePasswordSubmit = (e) => { e.preventDefault() const inputPassword = e.target.elements.password.value if (PASSWORDS.includes(inputPassword)) { setAuthenticated(true) } else { alert("Incorrect password") } } if (!authenticated) { return (
) } return } }