-
Notifications
You must be signed in to change notification settings - Fork 0
/
projectx.html
138 lines (127 loc) · 3.71 KB
/
projectx.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Launch OS Button</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #f0f0f0;
background-image: url('https://images.pexels.com/photos/3231775/pexels-photo-3231775.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
background-size: cover;
background-position: center;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.bigger-font {
font-size: 36px; /* Adjust the font size as needed */
color: white; /* Text color */
text-align: center;
padding: 100px; /* Add padding for better visibility */
}
.igger-font {
font-size: 24px; /* Adjust the font size as needed */
color: white; /* Text color */
}
.launch-button {
padding: 15px 30px;
background-color: #3498db;
color: #fff;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s;
margin-bottom: 20px;
}
.launch-button:hover {
background-color: #2980b9;
}
.input-container {
display: flex;
gap: 10px;
}
.custom-input {
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}
.submit-button {
padding: 10px 20px;
background-color: #3498db;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
.submit-button:hover {
background-color: #2980b9;
}
.textarea {
position: relative;
}
.textarea form {
display: inline-block;
}
#w3review {
position: absolute;
top:100px;
right: 320px;
}
</style>
</head>
<body>
<form action="http://65.0.130.148/cgi-bin/project7.py">
<div class = "textarea">
<textarea id="w3review" name="w" rows="4" cols="50"></textarea>
</div>
</form>
</style>
</head>
<body>
<div class="bigger-font">
MyWebUi
</div>
<form action="http://65.0.130.148/cgi-bin/project5.py" method="post">
<input class="custom-input" type="text" name="na" placeholder="Enter your Command">
<button class="launch-button" type="submit">Linux</button>
</form>
<form action="http://65.0.130.148/cgi-bin/project7.py" method="post">
<button class="launch-button" type="submit">submit note</button>
</form>
<form action="http://65.0.130.148/cgi-bin/project.py" method="post">
<button class="launch-button" type="submit">Launch OS</button>
</form>
<form action="http://65.0.130.148/cgi-bin/project3.py" method="post">
<button class="launch-button" type="submit">Total Os </button>
</form>
<form action="http://65.0.130.148/cgi-bin/project6.py" method="post">
<textarea class="custom-input" name="code" rows="4" cols="50"></textarea>
<button class="launch-button" type="submit">Python Compiler</button>
</form>
<form action="http://65.0.130.148/cgi-bin/project1.py" method="post">
<button class="launch-button" type="submit">Launch Ec2 Instance</button>
</form>
<form action="http://65.0.130.148/cgi-bin/project4.py" method="post">
<button class="launch-button" type="submit">Launch S3 Bucket</button>
</form>
<div class="igger-font">
CHATGPT
</div>
<form action="http://65.0.130.148/cgi-bin/project2.py" method="post">
<div class="input-container">
<input class="custom-input" type="text" name="name" placeholder="Enter your Prompt">
<button class="submit-button" type="submit">Submit</button>
</div>
</form>
</body>
</html>