-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.html
121 lines (97 loc) · 2.2 KB
/
index.html.html
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flow Reporting</title>
<style>
body {
font-family: Arial, sans-serif;
}
.form-section {
margin-bottom: 20px;
}
.form-section label {
font-weight: bold;
margin-right: 10px;
}
.form-section select, .form-section input[type="date"] {
padding: 8px;
margin-right: 10px;
}
.grid-wrapper {
display: flex;
gap: 0;
margin-bottom: 10px;
border-collapse: collapse;
}
.grid-header, .grid-item, .editable {
padding: 10px;
border: 1px solid #ccc;
text-align: center;
}
.grid-item{
font-size: 12px;
}
.grid-header {
font-weight: bold;
background-color: black;
color: white;
}
.editable {
cursor: text;
}
[contenteditable]:focus {
outline: 2px solid #007bff;
}
button {
padding: 8px 12px;
background-color: #28a745;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
margin-right: 10px;
}
button:hover {
opacity: 0.8;
}
.submit-btn {
background-color: #007bff;
padding: 10px 15px;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.submit-btn:hover {
opacity: 0.9;
}
select.time-dropdown {
padding: 8px;
font-size: 16px;
}
.button-container {
margin-top: 20px;
}
.success-message {
margin-top: 10px;
font-weight: bold;
color: green;
}
</style>
</head>
<script>
function MyFunction()
{
console.log('click open')
let strWindowFeatures = "location=yes,height=570,width=520,scrollbars=yes,status=yes";
window.open("https://google.com", '_blank')
return false;
}
</script>
<body>
<h1>Flow Reporting</h1>
<a id="myLink" href="#" onclick="MyFunction();">link text</a>
</body>
</html>