麻豆原创

MU logo
MU logo

Welcome to 麻豆原创!

We are glad you chose 麻豆原创 and are excited to welcome you to campus! On this web page, you will find important resources that will help you prepare for success as a student at 麻豆原创.

If you’re unable to find anything you’re looking for or have questions about what you see, contact your admissions counselor, email admitinfo@manchester.edu, or call 800-852-3648.

YouTube video

New Student Registration

We are excited you have taken the first step in becoming a Manchester Spartan! To begin the New Student Registration process, please complete the following:

Placement Exams

It is very important that you review the Placement Exam Information. Placement exams are critical in appropriately placing students in courses that meet their skill level. While there is not a specific study guide for these exams, we encourage students to try their best as these will affect your academic plan for your four years at 麻豆原创.

All placement exams are administered .

Intent to Enroll/Enrollment Fee

  • Complete the Intent to Enroll form and submit your $100 Enrollment Fee to declare your commitment to attending 麻豆原创. The earlier you complete the form and pay your fee, the earlier you can move through the registration process to secure your spot in classes and housing. Access the Intent to Enroll form.

New Student Registration Survey

  • Complete the

Welcome to the 麻豆原创 community! We look forward to seeing you on Black & Gold Day! Look for more information about orientation and housing to come soon.

For any questions, please contact the Office of Admissions at admitinfo@manchester.edu.

a female pharmacy student stands under a screen displaying telemetric data of a patient
Subtle_Texture

Are you on track?

Once you’ve completed New Student Registration above, complete the following checklist.

Important Next Steps

  • Submit your or online.
  • Submit your Black & Gold Day Reservation.
  • Submit a photo for your .
  • Submit your required Required Health Forms by August 1.
  • Request final official transcripts for any dual-credit courses you鈥檝e taken in high school. These should be mailed to the Office of Admissions as soon as available.
Camp Mack Day with two male students smiling with thumbs up on basketball court

Important Dates

  • Black & Gold Day 鈥 Friday, June 27, 2025
  • Health Forms Due 鈥 Friday, August 1
  • Fall Bills Due 鈥 Friday, August 1
  • New Student Move-in 鈥揟hursday, August 21
  • Black and Gold New Student Orientation & Week of Welcome 鈥 Begins Thursday, August 21
  • Classes Begin 鈥 Monday, August 25

Academic/Class Information

  • Office of the Registrar– Find information about class schedules, academic calendar, class registration and academic forms here.
  • University Catalog – A comprehensive guide to major and minor requirements, course descriptions and general University information.
  • Honors Program

Autos/Parking/Transportation

Students must register all motor vehicles as part of the enrollment process.

Campus Employment

Find on-campus student job postings on our Human Resources page. The Office of Career and Professional Development helps students find paid internships and other off-campus employment.

ChetNet

is the University’s intranet. Here you’ll find much of the information you need to know that’s too personal or secure to put onto the University’s website, such as forms and account information. Once you鈥檙e a student here, you鈥檒l also use ChetNet to find important University announcements, news, and information about events. Most importantly, this is where you鈥檒l get your grades at the end of the semester. If you have any problems, email helpdesk@manchester.edu.

Gear Shop/Textbooks

Order textbooks online from the 麻豆原创 Campus Store. A complete book list will be available on the Campus Store website two weeks prior to the start of classes. Pick up books at the store before the start of classes.

Meals

All resident students are required to be on a meal plan, with several options available. Meals are served at Haist Commons in the Jo Young Switzer Center, or students can buy a la carte items from The Oaks Snack Bar, or grab food-to-go from Wilbur鈥檚 featuring Cru5h.

Money Matters

The Office of Student Financial Services assists students in payments of tuition and other fees, and credits accounts with financial aid, loans and scholarships. Students need to discuss their financial aid with their admissions counselor before they can be ready to register for classes.

The Business Office provides services to students such as check cashing, money orders and payment for campus employment. An ATM is located on the lower level of the Jo Young Switzer Center.

Students can apply for a variety of campus employment positions to help offset college costs.

Policies/Handbooks

Receive Financial Aid

Make sure you receive your financial aid from us and review it with your admissions counselor. See a Glossary of Terminology and Frequently Asked Questions regarding your Financial Aid Notification.

Rooms/Residential Life

What should I bring to college? How big is my room? Where can I do laundry? Find answers about residential life at 麻豆原创 here.

Technology

Find answers to all your technology questions for new students.

Visiting 麻豆原创

Visit Us!

 

YouTube video

Subtle_Texture
exists --- (function ensure40pxInlineEarly() { function set40(el) { el && el.style.setProperty('padding-top', '40px', 'important'); } // If header already parsed, set now; otherwise set as soon as it appears. const hdrNow = document.getElementById(HEADER_ID); if (hdrNow) { set40(hdrNow); return; } new MutationObserver((muts, obs) => { const hdr = document.getElementById(HEADER_ID); if (hdr) { set40(hdr); obs.disconnect(); } }).observe(document.documentElement, { childList: true, subtree: true }); })(); // --- Helpers --- function hideDiviBars() { document.querySelectorAll('.divibars-container').forEach(div => { const content = (div.textContent || '').replace(/\u00A0/g, ' ').trim(); const shouldHide = !content || /all\s*clear/i.test(content) || /test/i.test(content) || /feed\s*has\s*no\s*items\.?/i.test(content); if (shouldHide) div.style.setProperty('display', 'none', 'important'); }); } function isEffectivelyVisible(el) { if (!el || !el.isConnected) return false; const target = el.querySelector('.divibars, .divibars-wrapper, .divibars-content') || el; const cs = getComputedStyle(target); if (cs.display === 'none' || cs.visibility === 'hidden' || target.hidden) return false; if (parseFloat(cs.opacity || '1') < 0.05) return false; if (target.closest('[aria-hidden="true"]')) return false; const rect = target.getBoundingClientRect(); const hasSize = (rect.width > 0 && rect.height > 0) || (target.offsetWidth > 0 && target.offsetHeight > 0); if (!hasSize) return false; const vh = window.innerHeight || document.documentElement.clientHeight; return rect.bottom > 0 && rect.top < vh; } function anyRealBannerVisible() { // A 鈥渞eal鈥 banner = visible AND not empty/test/all-clear/feed-empty return Array.from(document.querySelectorAll(CANDS)).some(el => { if (!isEffectivelyVisible(el)) return false; const txt = (el.textContent || '').replace(/\u00A0/g, ' ').trim(); if (!txt) return false; if (/all\s*clear/i.test(txt) || /test/i.test(txt) || /feed\s*has\s*no\s*items\.?/i.test(txt)) return false; return true; }); } function setForce110(on) { const root = document.documentElement; const was = root.classList.contains('divibar-force-110'); if (!!on === was) return; root.classList.add('divibar-atomic'); root.classList.toggle('divibar-force-110', !!on); // If we鈥檙e NOT forcing 110, clear any stray inline 110 the plugin may add later. if (!on) { const hdr = document.getElementById(HEADER_ID); if (hdr) hdr.style.setProperty('padding-top', '40px', 'important'); } requestAnimationFrame(() => root.classList.remove('divibar-atomic')); } // Debounced 2-frame confirmation to avoid flicker during animations let raf1 = null, raf2 = null; function scheduleRecompute() { if (raf1) return; raf1 = requestAnimationFrame(() => { raf1 = null; hideDiviBars(); const a = anyRealBannerVisible(); raf2 = requestAnimationFrame(() => { raf2 = null; const b = anyRealBannerVisible(); setForce110(a && b); }); }); } // --- Wiring --- document.addEventListener('DOMContentLoaded', scheduleRecompute); window.addEventListener('load', scheduleRecompute); window.addEventListener('resize', () => { cancelAnimationFrame(raf1); raf1 = null; cancelAnimationFrame(raf2); raf2 = null; scheduleRecompute(); }); new MutationObserver(() => scheduleRecompute()).observe(document.documentElement, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class', 'aria-hidden'] }); document.addEventListener('transitionend', e => { if (e.target && e.target.closest(CANDS)) scheduleRecompute(); }); document.addEventListener('animationend', e => { if (e.target && e.target.closest(CANDS)) scheduleRecompute(); }); document.addEventListener('click', function (e) { const btn = e.target && e.target.closest('.divibars-close'); if (!btn) return; setTimeout(() => { const bar = btn.closest('.divibars-container, [class*="divibar"]'); if (bar) bar.style.setProperty('display', 'none', 'important'); scheduleRecompute(); }, 200); }, true); // Initial pass scheduleRecompute(); })();