-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathadd_problem.php
More file actions
81 lines (58 loc) · 2.31 KB
/
add_problem.php
File metadata and controls
81 lines (58 loc) · 2.31 KB
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
75
76
77
78
79
80
81
<?php
require 'navigation.php';
require 'connection.php';
require 'bootstrap.php';
?>
<html>
<body>
<div class="container">
<div class="form-group">
<label for="usr">Titlul problemei:</label>
<input type="text" class="form-control" id="usr" style="width:300px;">
</div>
<form role="form">
<div class="form-group">
<label for="comment">Textul problemei:</label>
<textarea class="form-control" rows="9" id="comment"></textarea>
</div>
</form>
<form role="form">
<div class="form-group">
<label for="comment">Cerinta:</label>
<textarea class="form-control" rows="3" id="comment"></textarea>
</div>
</form>
<form role="form">
<div class="form-group">
<label for="comment">Date de intrare:</label>
<textarea class="form-control" rows="2" id="comment"></textarea>
</div>
</form>
<form role="form">
<div class="form-group">
<label for="comment">Date de iesire:</label>
<textarea class="form-control" rows="2" id="comment"></textarea>
</div>
</form>
<form role="form">
<div class="form-group">
<label for="comment">Restrictii:</label>
<textarea class="form-control" rows="6" id="comment"></textarea>
</div>
</form>
<h2>Exemplu</h2>
<form role="form">
<div class="form-group">
<label for="comment">.in</label>
<textarea class="form-control" rows="10" id="comment"></textarea>
</div>
</form>
<form role="form">
<div class="form-group">
<label for="comment">.out</label>
<textarea class="form-control" rows="10" id="comment"></textarea>
</div>
</form>
</div>
</body>
</html>