Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
AiGptCode authored May 17, 2024
1 parent 9e58e5d commit 94b6077
Showing 1 changed file with 113 additions and 15 deletions.
128 changes: 113 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,81 +2,179 @@
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Configuration Generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Configuration Profile Generator</title>
<!-- Add Bootstrap CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KyZXEAg3QhqLMpG8r+Knujsl7/1L_dstPt3HV5HzF6Gvk/e3s4Wz6iJgD/+ub3o" crossorigin="anonymous">
<!-- Add custom CSS styles -->
<style>
body {
background-color: #f5f5f5;
font-family: Arial, sans-serif;
font-family: 'Roboto', sans-serif;
background-color: #333;
color: #fff;
}
.container {
max-width: 800px;
margin-top: 50px;
padding: 30px;
background-color: #444;
border-radius: 10px;
box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}
h1 {
text-align: center;
margin-bottom: 50px;
color: #fff;
font-weight: 300;
}
label {
font-weight: 500;
display: block;
margin-bottom: 5px;
}
.form-text {
color: #888;
margin-top: 5px;
}
.carrier {
color: #f00;
}
.apn {
color: #f90;
}
.vpn {
color: #09f;
}
.proxy {
color: #0f0;
}
.dns {
color: #00f;
}
.cloudflare {
color: #f0f;
}
input, select, textarea {
border-radius: 10px;
box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
padding: 10px;
font-size: 14px;
background-color: #555;
color: #fff;
}
button {
background-color: #f00;
color: #fff;
border-radius: 10px;
padding: 10px 20px;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
font-size: 14px;
font-weight: 500;
}
button:hover {
background-color: #f30;
}
/* Add responsive styles for mobile devices */
@media only screen and (max-width: 600px) {
.container {
padding: 20px;
}
h1 {
font-size: 24px;
}
label {
font-size: 14px;
}
input, select, textarea {
font-size: 14px;
}
button {
font-size: 14px;
}
}
</style>
<!-- Add custom fonts from Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Configuration Generator</h1>
<h1>Configuration Profile Generator</h1>
<!-- Add form for configuration generator -->
<form>
<div class="mb-3">
<label for="carrier" class="form-label">Carrier:</label>
<label for="carrier" class="form-label carrier carrier">Carrier:</label>
<select id="carrier" class="form-select">
<option value="mcinet">MCI</option>
<option value="irancell">Irancell</option>
<option value="rightel">RighTel</option>
</select>
<div class="form-text">Select your mobile carrier.</div>
</div>
<div class="mb-3">
<label for="apn" class="form-label">APN (optional):</label>
<label for="apn" class="form-label apn">APN (optional):</label>
<input type="text" id="apn" class="form-control">
<div class="form-text">Enter your APN (Access Point Name) if you want to override the default APN for your carrier. Leave this field blank to use the default APN.</div>
</div>
<div class="mb-3">
<label for="vpn_server" class="form-label">VPN Server (optional):</label>
<label for="vpn_server" class="form-label vpn">VPN Server (optional):</label>
<input type="text" id="vpn_server" class="form-control">
<div class="form-text">Enter the hostname or IP address of your VPN server if you want to use a VPN connection. Leave this field blank if you don't want to use a VPN.</div>
</div>
<div class="mb-3">
<label for="vpn_username" class="form-label">VPN Username (optional):</label>
<label for="vpn_username" class="form-label vpn">VPN Username (optional):</label>
<input type="text" id="vpn_username" class="form-control">
<div class="form-text">Enter your VPN username if you want to use a VPN connection. Leave this field blank if you don't want to use a VPN.</div>
</div>
<div class="mb-3">
<label for="vpn_password" class="form-label">VPN Password (optional):</label>
<label for="vpn_password" class="form-label vpn">VPN Password (optional):</label>
<input type="password" id="vpn_password" class="form-control">
<div class="form-text">Enter your VPN password if you want to use a VPN connection. Leave this field blank if you don't want to use a VPN.</div>
</div>
<div class="mb-3">
<label for="proxy_server" class="form-label">Proxy Server (optional):</label>
<label for="proxy_server" class="form-label proxy">Proxy Server (optional):</label>
<input type="text" id="proxy_server" class="form-control">
<div class="form-text">Enter the hostname or IP address of your proxy server if you want to use a proxy connection. Leave this field blank if you don't want to use a proxy.</div>
</div>
<div class="mb-3">
<label for="proxy_port" class="form-label">Proxy Port (optional):</label>
<label for="proxy_port" class="form-label proxy">Proxy Port (optional):</label>
<input type="text" id="proxy_port" class="form-control">
<div class="form-text">Enter the port number of your proxy server if you want to use a proxy connection. Leave this field blank if you don't want to use a proxy.</div>
</div>
<div class="mb-3">
<label for="dns_server" class="form-label">DNS Server (optional):</label>
<label for="dns_server" class="form-label dns">DNS Server (optional):</label>
<input type="text" id="dns_server" class="form-control">
<div class="form-text">Enter the hostname or IP address of your DNS server if you want to use a custom DNS server. Leave this field blank to use the default DNS server for your carrier.</div>
</div>
<div class="mb-3">
<label for="cloudflare_domain" class="form-label">Cloudflare Domain (optional):</label>
<label for="cloudflare_domain" class="form-label cloudflare">Cloudflare Domain (optional):</label>
<input type="text" id="cloudflare_domain" class="form-control">
<div class="form-text">Enter the domain name for your Cloudflare account if you want to use Cloudflare's DNS servers. Leave this field blank if you don't want to use Cloudflare's DNS servers.</div>
</div>
<!-- Add additional options -->
<div class="mb-3 form-check">
<input type="checkbox" id="enable_vpn" class="form-check-input">
<label for="enable_vpn" class="form-check-label">Enable VPN by default</label>
<div class="form-text">Check this box if you want the VPN connection to be enabled by default when you install the configuration profile. Leave this box unchecked if you want to manually enable the VPN connection.</div>
</div>
<div class="mb-3 form-check">
<input type="checkbox" id="enable_proxy" class="form-check-input">
<label for="enable_proxy" class="form-check-label">Enable proxy by default</label>
<div class="form-text">Check this box if you want the proxy connection to be enabled by default when you install the configuration profile. Leave this box unchecked if you want to manually enable the proxy connection.</div>
</div>
<div class="mb-3 form-check">
<input type="checkbox" id="remove_configuration" class="form-check-input">
<label for="remove_configuration" class="form-check-label">Remove configuration profile after uninstalling</label>
<div class="form-text">Check this box if you want the configuration profile to be removed from your device when you uninstall the app. Leave this box unchecked if you want the configuration profile to remain on your device after uninstalling the app.</div>
</div>
<button type="submit" class="btn btn-primary">Generate Configuration</button>
<button type="submit" class="btn btn-primary">Generate Configuration Profile</button>
</form>
<!-- Add Bootstrap JS CDN -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz4fnFO9gybBud7TlRbs/ic4AwGcFZOxg5DpPt8EgeUIgIwzjWfXQKWA4" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cn7l7gDp0eyniUwwAZgrzD06kc/tftFf19TOAs2zVinnD/C7E91j9yyk5//jjpt/" crossorigin="anonymous"></script>
</div>
</body>
</html>

0 comments on commit 94b6077

Please sign in to comment.