-
Notifications
You must be signed in to change notification settings - Fork 0
/
exper.php
43 lines (43 loc) · 1.11 KB
/
exper.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
35
36
37
38
39
40
41
42
43
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head><title>Transaction form</title>
<link rel="stylesheet" type="text/css" href="navmenu.css" />
</head>
<body>
<nav>
<ul>
<li><a href="home.php">Home</a></li>
<li><a href="contact.php">Contact</a></li>
<li><a href="about.php">About</a></li>
<li><a href="jsandformual.html">Login</a></li>
<li><a href="signup.php">Signup</a></li>
</ul>
</nav>
<section id="transactionform">
<form action="expert.php">
<fieldset>
<legend>Currency 1</legend>
<input type="radio" name="currency1" value="RON" checked> RON<br>
<input type="radio" name="currency1" value="EUR"> EUR<br>
<input type="radio" name="currency1" value="USD"> USD
</fieldset>
<fieldset>
<legend>Currency 2</legend>
<input type="radio" name="currency2" value="RON" checked> RON<br>
<input type="radio" name="currency2" value="EUR"> EUR<br>
<input type="radio" name="currency2" value="USD"> USD
</fieldset>
<fieldset>
<legend>Sum</legend>
Currency 1:<br>
<input type="text" name="currency1sum" value="0"><br>
<br>
</fieldset>
<input type="submit" value="Submit">
</form>
</section>
</body>
</head>