Quantcast
Channel: Forum Pasja Informatyki - Najnowsze pytania bez odpowiedzi
Viewing all articles
Browse latest Browse all 21942

Bootstrap formularz kontaktowy

$
0
0

Witam, stworzyłem w bootstrapie formularz kontaktowy i potrzebuje pomocy w uruchomieniu go, czyli jak zrobić aby wysyłał zapytania z formularza na podany email. Kod formularza który zrobiłem:
 

<div class="col-md-6 contact-right footer-grid wow bounceIn" data-wow-delay="0.4s">
				<h3>Formularz Kontaktowy</h3>
				<input type="text" value="Imię" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Imię';}"/>
				<input type="text" value="Email" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Email';}"/>
				<textarea onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Wiadomość..';}"/>Wiadomość..</textarea>
				<input type="submit" value="Wyślij">
			</div>

 


Viewing all articles
Browse latest Browse all 21942