質問編集履歴
2
ブラウザの画像追加とフォームの追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
+
```ここに言語を入力
|
2
|
+
|
3
|
+
コード
|
4
|
+
|
1
|
-
初めての質問です。
|
5
|
+
```初めての質問です。
|
2
6
|
|
3
7
|
下記のjspとcssに役職別に
|
4
8
|
|
@@ -6,6 +10,10 @@
|
|
6
10
|
|
7
11
|
|
8
12
|
|
13
|
+
画像のヘッダー部分「日報管理システム〜〜〜 ○○様 ログアウト」の部分の色を変更したいと思っております。
|
14
|
+
|
15
|
+
[ブラウザ画像](https://i.gyazo.com/d1f40d29715509d1ffde517ac0c56b6e.png)
|
16
|
+
|
9
17
|
|
10
18
|
|
11
19
|
```jsp
|
@@ -413,3 +421,75 @@
|
|
413
421
|
|
414
422
|
|
415
423
|
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
|
424
|
+
|
425
|
+
```_form jsp
|
426
|
+
|
427
|
+
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
428
|
+
|
429
|
+
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
430
|
+
|
431
|
+
<c:if test="${errors != null}">
|
432
|
+
|
433
|
+
<div id="flush_error">
|
434
|
+
|
435
|
+
入力内容にエラーがあります。<br />
|
436
|
+
|
437
|
+
<c:forEach var="error" items="${errors}">
|
438
|
+
|
439
|
+
・<c:out value="${error}" /><br />
|
440
|
+
|
441
|
+
</c:forEach>
|
442
|
+
|
443
|
+
|
444
|
+
|
445
|
+
</div>
|
446
|
+
|
447
|
+
</c:if>
|
448
|
+
|
449
|
+
<label for="code">社員番号</label><br />
|
450
|
+
|
451
|
+
<input type="text" name="code" value="${employee.code}" />
|
452
|
+
|
453
|
+
<br /><br />
|
454
|
+
|
455
|
+
|
456
|
+
|
457
|
+
<label for="name">氏名</label><br />
|
458
|
+
|
459
|
+
<input type="text" name="name" value="${employee.name}" />
|
460
|
+
|
461
|
+
<br /><br />
|
462
|
+
|
463
|
+
|
464
|
+
|
465
|
+
<label for="password">パスワード</label><br />
|
466
|
+
|
467
|
+
<input type="password" name="password" />
|
468
|
+
|
469
|
+
<br /><br />
|
470
|
+
|
471
|
+
|
472
|
+
|
473
|
+
<label for="admin_flag">権限</label><br />
|
474
|
+
|
475
|
+
<select name="admin_flag">
|
476
|
+
|
477
|
+
<option value="0"<c:if test="${employee.admin_flag == 0}"> selected</c:if>>一般</option>
|
478
|
+
|
479
|
+
<option value="1"<c:if test="${employee.admin_flag == 1}"> selected</c:if>>管理者</option>
|
480
|
+
|
481
|
+
<option value="2"<c:if test="${employee.admin_flag == 2}"> selected</c:if>>課長</option>
|
482
|
+
|
483
|
+
<option value="3"<c:if test="${employee.admin_flag == 3}"> selected</c:if>>部長</option>
|
484
|
+
|
485
|
+
</select>
|
486
|
+
|
487
|
+
<br /><br />
|
488
|
+
|
489
|
+
|
490
|
+
|
491
|
+
<input type="hidden" name="_token" value="${_token}" />
|
492
|
+
|
493
|
+
<button type="submit">投稿</button>
|
494
|
+
|
495
|
+
```
|
1
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,6 +8,10 @@
|
|
8
8
|
|
9
9
|
|
10
10
|
|
11
|
+
```jsp
|
12
|
+
|
13
|
+
|
14
|
+
|
11
15
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
12
16
|
|
13
17
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
@@ -84,12 +88,16 @@
|
|
84
88
|
|
85
89
|
</html>
|
86
90
|
|
91
|
+
```
|
92
|
+
|
87
93
|
|
88
94
|
|
89
95
|
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
|
90
96
|
|
91
97
|
|
92
98
|
|
99
|
+
```css
|
100
|
+
|
93
101
|
@CHARSET "UTF-8";
|
94
102
|
|
95
103
|
body {
|
@@ -400,6 +408,8 @@
|
|
400
408
|
|
401
409
|
}
|
402
410
|
|
411
|
+
```
|
412
|
+
|
403
413
|
|
404
414
|
|
405
415
|
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
|