Feedback: comment-out poll question, change wording of 'feature request' to 'product suggestion'.

Header: add "Version:" label to version string, "Unraid OS" label to key type.
This commit is contained in:
Tom Mortensen
2018-08-31 09:06:12 -07:00
parent 92d980c4e2
commit 56d1f6672c
2 changed files with 9 additions and 8 deletions
@@ -303,13 +303,13 @@ $.ajaxPrefilter(function(s, orig, xhr){
<div class="upgrade_notice" style="display:none"></div>
<div id="header" class="<?=$display['banner']?>">
<div class="logo">
<a href="#" onclick="openBox('/webGui/include/Feedback.php','Feedback',600,600,false);return false;"><?=file_get_contents("$docroot/webGui/images/UN-logotype-gradient.svg")?></a>
<?=$var['version']?><?=$notes?>
<a href="https://unraid.net"><?=file_get_contents("$docroot/webGui/images/UN-logotype-gradient.svg")?></a>
Version: <?=$var['version']?><?=$notes?>
</div>
<div class="block">
<span class="text-left">Server<br/>Description<br/>Registration<br/>Uptime</span>
<span class="text-right"><?=$var['NAME']." &bullet; ".$eth0['IPADDR:0']?><br/><?=$var['COMMENT']?><br/>
<a href="/Tools/Registration" title="Go to Registration page"><span id="licensetype"><?=$var['regTy']?></span><span id="licenseexpire"></span></a><br/>
<a href="/Tools/Registration" title="Go to Registration page">Unraid OS <span id="licensetype"><?=$var['regTy']?></span><span id="licenseexpire"></span></a><br/>
<span id="uptime"></span></span>
</div>
</div>
+6 -5
View File
@@ -43,8 +43,8 @@ input[type=email]{margin-top:8px;float:left}
<body>
<div style="margin-top:0;line-height:30px;margin-left:5px;margin-right:5px">
<div id="control_panel" class="four">
<label for="optOnlinePoll"><input type="radio" name="mode" id="optOnlinePoll" value="onlinepoll" checked="checked" /> Online Poll</label>
<label for="optFeatureRequest"><input type="radio" name="mode" id="optFeatureRequest" value="featurerequest"/> Feature Request</label>
<!-- <label for="optOnlinePoll"><input type="radio" name="mode" id="optOnlinePoll" value="onlinepoll" checked="checked"/> Online Poll</label> -->
<label for="optFeatureRequest"><input type="radio" name="mode" id="optFeatureRequest" value="featurerequest" checked="checked"/> Product Suggestion</label>
<label for="optBugReport"><input type="radio" name="mode" id="optBugReport" value="bugreport"/> Bug Report</label>
<label for="optComment"><input type="radio" name="mode" id="optComment" value="comment"/> Other Comment</label>
<hr>
@@ -52,7 +52,7 @@ input[type=email]{margin-top:8px;float:left}
<div id="thanks_panel" class="allpanels"></div>
<div id="onlinepoll_panel" class="allpanels"></div>
<div id="featurerequest_panel" class="allpanels">
<textarea id="featureDescription" placeholder="Please summarize your feature request here."></textarea>
<textarea id="featureDescription" placeholder="Please summarize your suggestion here."></textarea>
<br>
<input type="email" id="featureEmail" placeholder="Contact Email Address (optional)" /><input type="button" id="featureSubmit" value="Submit"/>
</div>
@@ -63,7 +63,7 @@ input[type=email]{margin-top:8px;float:left}
<input type="email" id="bugEmail" placeholder="Contact Email Address (optional)" /><input type="button" id="bugSubmit" value="Submit"/>
</div>
<div id="comment_panel" class="allpanels">
<textarea id="commentDescription" placeholder="Type your question or comment to Lime Technology here. We will respond by to the e-mail address associated with your registration key."></textarea>
<textarea id="commentDescription" placeholder="Type your question or comment to Lime Technology here."></textarea>
<br>
<input type="email" id="commentEmail" placeholder="Contact Email Address (optional)" /><input type="button" id="commentSubmit" value="Submit"/>
</div>
@@ -193,7 +193,8 @@ $(function() {
featurerequest_reset();
bugreport_reset();
comment_reset();
$('#optOnlinePoll').click();
// $('#optOnlinePoll').click();
$('#optFeatureRequest').click();
});
</script>
</body>