Packages

weber - is Elixir MVC web framework.

Current section

Files

Jump to
weber examples SimpleChat lib views login render_login.html
Raw

examples/SimpleChat/lib/views/login/render_login.html

<!doctype html>
<html ng-app>
<head>
<title>Simple chat with Weber</title>
<link rel="stylesheet" type="text/css" href="public/css/bootstrap.css">
<script type="text/javascript" src="public/js/angular.js"></script>
<script type="text/javascript" src="public/js/simplechat.js"></script>
<meta name="keywords" content="HTML,CSS,XML,JavaScript">
</head>
<body>
<div class="row" ng-controller="SimpleChatLoginController">
<div class="col-lg-3" style="top: 150px; float: none !important; margin: 0 auto;">
<div class="input-group">
<input type="text" class="form-control" ng-model="login">
<span class="input-group-btn">
<button class="btn btn-default" ng-click="join(login)" type="button">Login!</button>
</span>
</div>
</div>
</div>
</body>
</html>