-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
34 lines (30 loc) · 1.22 KB
/
contact.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<link rel="stylesheet" type="text/css" href="styles/styles-index.css">
<link rel="stylesheet" type="text/css" href="styles/styles-header.css">
<link rel="stylesheet" type="text/css" href="styles/styles-footer.css">
<link rel="stylesheet" type="text/css" href="styles/styles-contact.css">
<?php include('header.php'); ?>
<script src="contact-script.js"></script>
<div id="centar">
<div id="contactForm">
<form name="form" method="get" action="">
<label for="ime">Your name:</label>
<br>
<input type="text" id="name" name="name" placeholder="your full name">
<br>
<br>
<label for="email">Email address:</label>
<br>
<input type="text" id="email" name="email" placeholder="real email address">
<br>
<br>
<label for="comment">Your message:</label>
<br>
<textarea id="comment" name="comment" rows="15" cols="75" placeholder="Your message"></textarea>
<br>
<br>
<input onclick="checkData()" type="button" name="form" id="btnForm" value="SUBMIT">
</form>
<div id="message"></div>
</div>
</div>
<?php include('footer.php'); ?>