Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!doctype html>
<html lang="en">
<head>
<meta
name='viewport'
content='maximum-scale=1.0, user-scalable=no, width=device-width, initial-scale=0'
/>
<meta name="theme" content="#68350d">
<title>Chateau - Profile Settings</title>
<link rel="stylesheet" href="main.css?v=1.0">
</head>
<body>
<div id="header"><a class="backButton" onclick="checkForUnsavedChanges()">Back</a></div>
<div class="wrapper"><div id="settings" class="primaryContent">
<div id="profNameDiv" maxlength="18" class="settingsOption">
<label for="profNameInput">Profile Name:</label>
<input type="text" name="profNameInput" id="profNameInput" class="settingsInput">
<!--<button id="profNameButton" onclick="profUpdate('profName')">Save</button>-->
</div>
<div id="profStatusDiv" class="settingsOption">
<label for="profStatusInput">Status Message:</label>
<input type="text" name="profStatusInput" id="profStatusInput" class="settingsInput">
<!--<button id="profStatusButton" onclick="profUpdate('profStatus')">Save</button>-->
</div>
<div id="profNameColorDiv" class="settingsOption">
<label for="profNameColorInput">Name Color:</label>
<div id="colorInputWrapper" class="settingsInput"><input type="color" name="profNameColorInput" id="profNameColorInput"></div>
<!--<button id="profStatusButton" onclick="profUpdate('profNameColor')">Save</button>-->
</div>
<div class="saveSettingsDiv" id="saveSettingsDiv"><button class="saveSettingsButton" id="saveSettingsButton">Save Changes</button></div>
<div id="profPicDiv" class="settingsOption">
<label for="profPicInput">Profile Picture:</label>
<div id="picInputWrapper" class="settingsInput"><input type="file" accept="image/*" name="profPicInput" id="profPicInput"></div>
<!--<button id="profPicButton" onclick="profUpdate('profPic')">Save</button>-->
</div>
<div class="saveSettingsDiv"><button class="saveSettingsButton" id="savePic">Change Picture</button></div>
</div>
</div>
<script src="profile.js"></script>
</body>
</html>