> ## Documentation Index
> Fetch the complete documentation index at: https://stephensecules.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Contact

> Get in touch with Dr. Stephen Secules

You can reach **Dr. Stephen Secules** at:

📧 **Email:** secules at unm dot edu

***

## Office Hours

* Mondays 2:00 PM – 4:00 PM
* Location: University of New Mexico, Mechanical Engineering Department, Albuquerque, NM

***

## Connect

* 🔗 [LinkedIn](https://www.linkedin.com/in/stephen-secules)
* 📝 [Google Scholar](https://scholar.google.com/citations?user=LKvPLskAAAAJ\&hl=en)

***

## Prospective Students

Get in touch if you're interested in:

* **Lecturer role** within First Year and Integrative Engineering. Start date August 2026. [Apply here →](https://unm.csod.com/ux/ats/careersite/18/home/requisition/34841?c=unm\&sq=req34841\&referralToken=rSMwBIyAoEG5X8M5fUVt9A)

* **Postdoc position** studying and supporting localized integrative engineering education in New Mexico. A variety of research projects are planned, including ethnographic study of New Mexico students' funds of knowledge, arts-based research, and study of equity for students from varied math backgrounds. Must have ability to and access to drive to research sites.

* **Undergraduate research assistant** hourly pay to support research on engineering education, including understanding New Mexico students' backgrounds and participation in first year engineering courses. Helpful skills include a background in a STEM subject, good written and oral communication, independent working, and professionalism.

* **Graduate research assistantship** to support research on engineering education, including understanding New Mexico students' backgrounds and participation in first year engineering courses. The graduate researcher will need to gain skills in qualitative research and educational theories, through coursework or self study.

* Information about **first year engineering** or **integrative engineering programs**

* Other **collaborations or ideas**

***

## Submit Inquiries

<div
  dangerouslySetInnerHTML={{__html: `
<div id="form-container" style="max-width: 600px; margin: 2rem auto;">
<!-- Success Message (hidden by default) -->
<div id="success-message" style="display: none; padding: 2rem; background-color: #d1fae5; border: 2px solid #16A34A; border-radius: 0.5rem; text-align: center;">
  <div style="font-size: 2.5rem; color: #16A34A; margin-bottom: 1rem;">✓</div>
  <h3 style="font-size: 1.25rem; font-weight: 600; color: #065f46; margin-bottom: 0.5rem;">Form Submitted Successfully!</h3>
  <p style="font-size: 1rem; color: #047857; margin: 0;">Thank you for your message. I will review it and contact you if I find it interesting.</p>
</div>

<!-- Contact Form -->
<form id="contact-form" style="padding: 1.5rem; border: 1px solid #e5e7eb; border-radius: 0.5rem;">
  <div style="margin-bottom: 1.5rem;">
    <label style="display: block; font-weight: 500; margin-bottom: 0.5rem;">Your email:</label>
    <input type="email" id="email-input" name="email" placeholder="your.email@example.com" required style="display: block; width: 100%; padding: 0.75rem; border: 1px solid #d1d5db; border-radius: 0.375rem; font-size: 1rem; box-sizing: border-box;" />
  </div>
  
  <div style="margin-bottom: 1.5rem;">
    <label style="display: block; font-weight: 500; margin-bottom: 0.5rem;">Your message:</label>
    <p style="font-size: 0.875rem; color: #6b7280; margin: 0 0 0.5rem 0;">Provide your name, current role, affiliation, and short message</p>
    <textarea id="message-input" name="message" placeholder="Your message here..." required rows="6" style="display: block; width: 100%; padding: 0.75rem; border: 1px solid #d1d5db; border-radius: 0.375rem; font-size: 1rem; box-sizing: border-box; min-height: 150px; resize: vertical;"></textarea>
  </div>
  
  <button type="submit" id="submit-btn" style="width: 100%; padding: 0.75rem 1.5rem; background-color: #16A34A; color: white; border: none; border-radius: 0.375rem; font-size: 1rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease;">Send</button>
</form>
</div>

<script>
document.getElementById('contact-form').addEventListener('submit', async function(e) {
  e.preventDefault();
  
  var btn = document.getElementById('submit-btn');
  var form = document.getElementById('contact-form');
  var successMsg = document.getElementById('success-message');
  var emailInput = document.getElementById('email-input');
  var messageInput = document.getElementById('message-input');
  
  btn.textContent = 'Sending...';
  btn.disabled = true;
  btn.style.backgroundColor = '#9ca3af';
  btn.style.cursor = 'not-allowed';
  
  var formData = new FormData();
  formData.append('email', emailInput.value);
  formData.append('message', messageInput.value);
  
  try {
    var response = await fetch('https://formspree.io/f/xldqwnld', {
      method: 'POST',
      body: formData,
      headers: { 'Accept': 'application/json' }
    });
    
    if (response.ok) {
      // Hide the form
      form.style.display = 'none';
      
      // Show success message
      successMsg.style.display = 'block';
      
    } else {
      throw new Error('Failed');
    }
  } catch (error) {
    alert('Something went wrong. Please try again.');
    btn.textContent = 'Send';
    btn.disabled = false;
    btn.style.backgroundColor = '#16A34A';
    btn.style.cursor = 'pointer';
  }
});
</script>
`}}
/>

***
