-
Notifications
You must be signed in to change notification settings - Fork 0
/
CircleAndCircle.php
74 lines (73 loc) · 2.97 KB
/
CircleAndCircle.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Circle & Circle</title>
<link rel="stylesheet" href="assets/reset.css">
<!-- <link rel="stylesheet" href="">-->
<link href="assets/css/bootstrap.min.css" rel="stylesheet" media="screen">
</head>
<body>
<script src="assets/jquery-3.2.1.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<?php
//require_once 'CircleAndCircle_handler.php';
?>
<h4>Определение количества точек пересечения двух окружностей</h4>
<form action="CircleAndCircle_handler.php" method="post">
<h5>Окружность 1</h5>
<div class="form-group">
<label for="Circle1">Координата центра по X</label>
<input type="number" class="form-control" id="Circle1X" placeholder="X1" name="circle1[x1]">
</div>
<div class="form-group">
<label for="Circle1">Координата центра по Y</label>
<input type="number" class="form-control" id="Circle1Y" placeholder="Y1" name="circle1[y1]">
</div>
<div class="form-group">
<label for="Circle1">Радиус, мм</label>
<input type="number" class="form-control" id="Circle1R" placeholder="R1" name="circle1[r1]">
</div>
<h5>Окружность 2</h5>
<div class="form-group">
<label for="Circle1">Координата центра по X</label>
<input type="text" class="form-control" id="Circle2X" placeholder="X2" name="circle2[x2]">
</div>
<div class="form-group">
<label for="Circle1">Координата центра по Y</label>
<input type="number" class="form-control" id="Circle2Y" placeholder="Y2" name="circle2[y2]">
</div>
<div class="form-group">
<label for="Circle1">Радиус, мм</label>
<input type="text" class="form-control" id="Circle2R" placeholder="R2" name="circle2[r2]">
</div>
<!-- <div class="form-group">-->
<!-- <label for="exampleInputPassword1">Password</label>-->
<!-- <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">-->
<!-- </div>-->
<!-- <div class="form-group">-->
<!-- <label for="exampleInputFile">File input</label>-->
<!-- <input type="file" id="exampleInputFile">-->
<!-- <p class="help-block">Example block-level help text here.</p>-->
<!-- </div>-->
<!-- <div class="checkbox">-->
<!-- <label>-->
<!-- <input type="checkbox"> Check me out-->
<!-- </label>-->
<!-- </div>-->
<button type="submit" class="btn btn-default" name="go">Submit</button>
</form>
<!--<h5>--><?php //echo $result; ?><!--</h5>-->
</body>
</html>
<?php
/**
* Created by PhpStorm.
* User: dobrodeev
* Date: 14.08.2018
* Time: 11:50
*/
?>