Files
rr3-assets/files/.depot/CC_Data/twitter_signin.html
Daniel Elliott 7b42b6e3de Add complete uncompressed asset files + archive
- Extracted all 13,555 files from files.7z (1.2GB uncompressed)
- Includes: vehicles, tracks, audio, textures, UI, manifests
- Also kept files.7z for easy download
- Full working directory for asset development
2026-02-18 15:19:56 -08:00

183 lines
4.7 KiB
HTML

<html>
<head>
<meta name="HandheldFriendly" content="True"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<style type="text/css">
body
{
background-color: #E8E8E8;
color: #333333;
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
font-size: 0.88em;
margin: 0px auto;
}
label
{
line-height: 2.0;
}
input
{
height: 2.2em;
width: 100%;
}
form
{
margin: 0;
padding: 0;
}
.container {
border-bottom: 1px solid #DDDDDD;
border-left: 1px solid #DDDDDD;
border-right: 1px solid #DDDDDD;
border-top: 0px solid #DDDDDD;
margin: 0px auto;
text-align: left;
width: 440px;
background-color: #EEEEEE;
}
.twitterHeader
{
vertical-align: middle;
background-color: #50A7E6;
color: #FFFFFF;
font-weight: 700;
padding: 10px 10px;
}
.twitterForm
{
background-color: #FFFFFF;
line-height: 28px;
padding: 10px 0.75em;
line-height: 3;
}
.twitterButton
{
background-color: #F7BE0F;
border: 1px solid #F3A418;
color: #000000;
padding: 0px 0.75em;
text-align: center;
vertical-align: middle;
display: block;
margin-top: 1em;
line-height: 1.6;
font-weight: 700;
}
#idSignInFailed
{
background-color: #EDE0DF;
color: #B03A32;
text-shadow: #FFFFFF 0px 1px 0px;
padding: 10px 0.75em;
}
#idPleaseWaitContainer
{
background-color: #EEEEEE;
color: #AAAAAA;
text-shadow: #FFFFFF 0px 1px 0px;
text-align: center;
font-weight: 700;
line-height: 2.5;
}
</style>
</head>
<body onload="onLoad()">
<div class="container">
<div class="twitterHeader">
<img style="vertical-align: middle;" src="twitter_logo.gif" alt="Twitter Logo" /> <a style="vertical-align: middle;" id="idLblTitle">Sign in to twitter</a>
</div>
<div id = "idSignInFailed" style="display: none" >
<a id="idLblErrorMessage">Username or password is incorrect. Please try again.</a>
</div>
<form name="TwitterSignIn" id ="idFormSignIn" action="" method="get">
<div class="twitterForm">
<label id="idLblUserName">Username</label>
<div><input autocapitalize="off" autocorrect="off" name="username" placeholder="" type="text" value=""/></div>
<!-- <div class="hint">You can also use your email address</div>-->
<label id="idLblPassword">Password</label>
<div><input name="password" placeholder="" type="password" value=""/></div>
<div id = "idSignInContainer" style="display: block" >
<div id="idSubmit" class="twitterButton">Sign In </div>
<!-- <div class="twitterButton"><a id="idCancel" >Cancel</a></div>-->
</div>
</div>
</form>
<div id = "idPleaseWaitContainer" style="display: none">
<a id="idLblPleaseWait">Please Wait...</a>
</div>
</div>
<script type="text/javascript">
document.getElementById('idSubmit').onclick = onSubmit;
document.getElementById('idCancel').onclick = onCancel;
function setText( sTitle, sUsername, sPassword, sSignIn, sCancel, sPleaseWait, sErrorMessage )
{
document.getElementById('idLblTitle').innerHTML = sTitle;
document.getElementById('idLblUserName').innerHTML = sUsername;
document.getElementById('idLblPassword').innerHTML = sPassword;
document.getElementById('idSubmit').innerHTML = sSignIn;
document.getElementById('idCancel').innerHTML = sCancel;
document.getElementById('idLblPleaseWait').innerHTML = sPleaseWait;
}
function onSubmit()
{
// Hide sign-in and error, show "please wait"
document.getElementById('idSignInContainer').style.display = "none";
document.getElementById('idSignInFailed').style.display = "none";
document.getElementById('idPleaseWaitContainer').style.display = "block";
// Send url
var signInForm = document.getElementById('idFormSignIn');
var name = signInForm.elements['username'].value;
var password = signInForm.elements['password'].value;
document.location="twittersignin://" + name + '/' + password;
}
function onCancel()
{
document.location="twittercancel://";
}
function onSignInFail()
{
document.getElementById('idPleaseWaitContainer').style.display = "none";
document.getElementById('idSignInContainer').style.display = "block";
document.getElementById('idSignInFailed').style.display = "block";
}
function onLoad()
{
// Call to code to set text
document.location="twittersettext://";
}
</script>
</body>
</html>