-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from rwth-acis/polymer3.0
Polymer3.0
- Loading branch information
Showing
9 changed files
with
1,866 additions
and
1,462 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,37 @@ | ||
<!doctype html> | ||
<html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"> | ||
|
||
<title>las2peer-frontend-user-widget</title> | ||
<title>las2peer-frontend-user-widget demo</title> | ||
|
||
<script src="../webcomponentsjs/webcomponents-lite.js"></script> | ||
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.1.min.js"></script> | ||
|
||
<link rel="import" href="../iron-component-page/iron-component-page.html"> | ||
<!-- import Bootstrap for responsive UI (must) --> | ||
<script type="text/javascript" src="https://netdna.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script> | ||
|
||
<script type="module" src="./las2peer-user-widget.js"></script> | ||
|
||
<style is="custom-style" include="demo-pages-shared-styles"> | ||
</style> | ||
</head> | ||
<body> | ||
<iron-component-page src="las2peer-frontend-user-widget.html"></iron-component-page> | ||
<div class="vertical-section-container centered"> | ||
<h3>Basic las2peer-frontend-user-widget demo</h3> | ||
<div style="margin:15px;width:150px;"> | ||
<div style="float:right"> | ||
<p> | ||
Alice | ||
</p> | ||
<div id="user-information" style="width:76px;height:55px"> | ||
<las2peer-user-widget base-url="https://las2peer.dbis.rwth-aachen.de:9098" login-name="michi" login-password="abc1234"> | ||
</las2peer-user-widget> | ||
<las2peer-userlist-widget base-url="https://las2peer.dbis.rwth-aachen.de:9098" login-name="michi" login-password="abc1234"> | ||
</las2peer-userlist-widget> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.