2
0
mirror of synced 2025-02-25 13:26:00 +00:00

70 lines
2.2 KiB
HTML
Raw Normal View History

2018-06-25 13:09:10 +10:00
<html>
<head>
<title>Demo</title>
<link rel="stylesheet" href="css/app.css">
<script src="js/app.js"></script>
</head>
<body class="container">
<div class="navbar navbar-default navbar-fixed-top">
<div class="viewUser row">
<div class="left col-md-4">
<input name="username" placeholder="profile username"/><button class="viewUsername btn btn-primary">view profile</button>
</div>
<div class="right col-md-8" align="right">
<span class="createLink btn btn-primary">create account</span>
</div>
</div>
</div>
<div class="main">
<div class="row createProfileView">
<div id="create-profile">
<strong>username: </strong><input type="text" class="form-control name" name="username">
<strong>description: </strong><input type="text" class="form-control description" name="description">
<button class="createProfile set btn btn-primary">create</button>
</div>
</div>
<div class="row profileView">
<div class="left col-md-4">
<div id="profile"><img alt="Username" />
2018-06-25 13:09:10 +10:00
<div class="profile-name">username</div>
<div class="profile-description">..Description..</div>
</div>
<span class="editLink">edit</span>
<div id="edit-profile-info">
<div id="edit-profile">
<strong>Edit Profile Description</strong>
<input type="text" class="form-control description" name="description">
<button class="editProfile set btn btn-primary">update description</button>
</div>
<div id="edit-profile-photo">
<strong>Upload Photo</strong>
<input type="file" class="form-control">
<button class="uploadFile set btn btn-primary">upload</button>
</div>
</div>
</div>
<div class="right col-md-8">
<div id="doTweet">
<input type="text" class="form-control name" name="text" placeholder="type text to be tweeted">
<button class="set btn btn-primary">tweet</button>
</div>
<div id="tweets">
<div class="tweet"></div>
</div>
</div>
</div>
</div>
</body>
</html>