mirror of
https://github.com/overte-org/overte.git
synced 2025-04-27 20:15:54 +02:00
48 lines
2 KiB
HTML
48 lines
2 KiB
HTML
<html>
|
|
<head>
|
|
<title>Share</title>
|
|
<link rel="stylesheet" type="text/css" href="css/edit-style.css">
|
|
<link rel="stylesheet" type="text/css" href="css/SnapshotReview.css">
|
|
<script type="text/javascript" src="qrc:///qtwebchannel/qwebchannel.js"></script>
|
|
<script type="text/javascript" src="js/eventBridgeLoader.js"></script>
|
|
<script type="text/javascript" src="js/SnapshotReview.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="snapshot-container">
|
|
<div class="snapshot-column-left">
|
|
<div class="snapsection">
|
|
<label class="title">Snapshot successfully saved!</label>
|
|
</div>
|
|
<hr />
|
|
<div class="snapsection">
|
|
<div id="sharing">
|
|
<div class="prompt">Would you like to share your pics in the Snapshots feed?</div>
|
|
<div class="button">
|
|
<span class="compound-button">
|
|
<input type="button" class="blue" id="share" value="Share in Feed" onclick="shareSelected()" />
|
|
<span class="glyph"></span>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="button">
|
|
<input type="button" class="black" id="close" value="Don't Share" onclick="doNotShare()" />
|
|
</div>
|
|
</div>
|
|
<hr />
|
|
<div class="snapsection">
|
|
<span class="setting">
|
|
<input type="button" class="glyph naked" id="snapshotSettings" value="@" onclick="snapshotSettings()" />
|
|
<label for="snapshotSettings">Snapshot settings</label>
|
|
</span>
|
|
<span class="setting checkbox">
|
|
<input id="openFeed" type="checkbox" checked />
|
|
<label for="openFeed">Open feed after</label>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div id="snapshot-images" class="snapshot-column-right">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|