-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoptions.html
99 lines (87 loc) · 2.39 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Video Text Reader</title>
<style>
body {
padding: 10px;
font-family: Arial, sans-serif;
background-color: #282c34;
font-weight: bold;
text-align: center;
display: flex;
align-items: center;
flex-direction: column;
}
h2 {
color: rgba(0, 255, 222, 1);
font-size: 24px;
font-weight: bold;
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
}
.inputField {
width: 50vw;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin: 5px;
}
.KeyText {
flex: 2;
color: rgba(0, 255, 222, 1);
font-size: 14px;
}
.KeyField {
flex: 3;
height: 30px;
background-color: rgb(173, 236, 228);
border: none;
border-radius: 6px;
box-sizing: border-box;
font-size: 12px;
margin: 0 5px;
}
button {
flex: 1;
font-weight: bold;
height: 30px;
background-color: rgb(173, 236, 212);
border: none;
border-radius: 6px;
color: #282c34;
text-decoration: none;
display: inline-block;
font-size: 14px;
cursor: pointer;
}
</style>
</head>
<body>
<h2>Video Text Reader</h2>
<div class="inputField">
<p class="KeyText">
Enter OpenAI API key:
</p>
<input type="text" id="OpenAIAPIKeyField" class="KeyField"></input>
<button id="submitOpenAIAPIKeyButton">Submit</button>
</div>
<div class="inputField">
<p class="KeyText">
Enter AWS API key:
</p>
<input type="text" id="AWSAPIKeyField" class="KeyField"></input>
<button id="submitAWSAPIKeyButton">Submit</button>
</div>
<div class="inputField">
<p class="KeyText">
Enter AWS API Secret:
</p>
<input type="text" id="AWSAPISecretField" class="KeyField"></input>
<button id="submitAWSAPISecretButton">Submit</button>
</div>
<script src="options.js"></script>
</body>
</html>