<!DOCTYPE html>
<html lang="en" data-ng-app="myapp">
<head>
<meta charset="UTF-8">
<meta name="description" content="My template">
<title>My template</title>
<!-- style -->
<link rel="stylesheet" href="style/style.css">
<!-- script jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.cookie.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<!// форма внутри таблицы//>
<form method="post" id="myform"></form>
<table>
<tr>
<td bgcolor="white"> Команда 1
<input type="text" style="width: 30px" name="text" name="second_name" form="myform">
<input type="text" style="width: 30px" name="text"name="first_name" form="myform">
<td bgcolor="white">Команда 2 Результат
<input type="text" style="width: 30px" name="text" name="second_name" form="myform">
<input type="text" style="width: 30px" name="text"name="first_name" form="myform">
Очки
<input type="text" style="width: 30px" name="text" name="second_name" form="myform">
</td>
</tr>
<tr>
<td> <br><br>
<input type="submit" name="add" form="myform" />
</td>
</tr>
</table>
</body>
</html>