Skip to content
Snippets Groups Projects

E-Mail and Contact Form {: #form }

The best way to reach us from a distance is through this contact form. Alternatively, you can also send us an email at makerspace@rub.de.

<!-- required am Ende der Felddefinition bedeutet: Eingabe ist erforderlich> -->
<h2>Contact Form</h2>
<div class="form-field">
	<label for="nachname"><strong>Last Name:</strong></label>
	<input name="nachname" type="text" maxlength="30" required/>
</div>							

<div class="form-field">
	<label for="vorname"><strong>First Name:</strong></label>
	<input name="vorname" type="text" maxlength="30" required/>
</div>							

<div class="form-field">
	<label for="email"><strong>Email:</strong></label>
	<input name="email" type="email" maxlength="60" required/>
</div>			

<div class="form-field">
	<label for="tel"><strong>Phone Number:</strong></label>
	<input name="tel" type="tel" maxlength="40" placeholder="Optional" />
</div>						

<div class="form-field">
	<label for="nachricht" id="nachricht-text"><strong>Your Message:</strong><span class='large'></span></label>
	<textarea name="nachricht" maxlength="500" placeholder="You can write your message here (Limit: 500 characters)" rows="6"></textarea>
</div> 

<div class="honey">
	<label for="honigtopf"><strong>Please do not fill this field:</strong></label>
	<input name="honigtopf" type="text" maxlength="50" value="" />
</div>	

<div class="form-field" style="margin-bottom: 10px; font-size: var(--form-note-font-size);">
	<label for="data-privacy" style="font-size: var(--form-note-font-size);">
		<div style="float: left; padding: 0px;">
			<input type="checkbox" id="data-privacy" name="data-privacy" required>
		</div>
		<div style="overflow: hidden; padding-left: 10px;">
			I agree to the collection, processing, and storage of my information provided here in accordance with your 
			<a href="https://www.ruhr-uni-bochum.de/en/privacy-notice" target="_blank" style="color: var(--link-color);">Privacy Notice</a>. I can withdraw my consent at any time by informal notification to you.
		</div>
	</label>
</div>

<div class="form-field">
	<input type="submit" class="hover" value="Submit Contact Form" name="schicken" /> 
</div>