This repository was archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathhelpdesk-form.html
135 lines (116 loc) · 5.35 KB
/
helpdesk-form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>HPC Cloud documentation</title>
<!-- Code highlighting -->
<link rel="stylesheet" href="css/highlight.min.css">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/starter-template.css" rel="stylesheet">
<!-- FontAwesome font so that we can reproduce OpenNebula's icons -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- <link rel="stylesheet" href="https://ui.hpccloud.surfsara.nl/css/app.min.css?v=4.14.2"> -->
<!-- Opensearch info so browsers can automatically search this documentation -->
<link href="opensearch.xml" rel="search" title="HPC Cloud docs" type="application/opensearchdescription+xml">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<style>
td {
vertical-align: top;
padding-left: 1em;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand">HPC Cloud</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="./"><i class="fa fa-life-ring" aria-hidden="true"></i> Documentation</a></li>
<li><a href="./notices/"><i class="fa fa-bullhorn" aria-hidden="true"></i> Notices</a></li>
<li class="active"><a href="./helpdesk-form.html"><i class="fa fa-comments-o" aria-hidden="true"></i> Contact</a></li>
</ul>
<div class="searchbox"><input type="text" class="searchfield" /> <input type="button" value="Search" class="searchbutton" /></div>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="starter-template">
<div class="btn-group" role="group" style="float: right">
<a class="btn btn-default edit" href="#" style="display: none">Edit on GitHub</a>
<a class="btn btn-default comments" href="mailto:[email protected]?subject=HPC%20Cloud%20documentation%20comments">E-mail comments</a>
</div>
<h1>Contact SURFsara Helpdesk </h1>
<hr>
<form action="mailto:[email protected]?subject=HPC Cloud: helpdesk request" method="post" enctype="text/plain" id="helpform">
<fieldset>
<legend>Personal information:</legend>
First name: <input type="text" size ="35" name="firstname" autofocus required><br>
Last name : <input type="text" size ="35" name="lastname" required><br>
</fieldset>
<fieldset>
<legend>Project information:</legend>
Project name : <input type="text" size ="35" name="projname"><br>
Login name : <input type="text" size ="35" name="loginname"><br>
Virtual Machine ID: <input type="text" size ="35" name="vmid"><br><br>
<p><strong>Note:</strong> Relevant if you already have an account in the HPC Cloud service.</p>
</fieldset>
<fieldset>
<legend>Please enter your question here:</legend>
<textarea input type="text" name="question" rows="10" cols="100" required></textarea><br><br>
<p><strong>Notes:</strong>
To help us troubleshoot your problem paste any error messages you received.<br>
</p>
</fieldset>
<fieldset>
<legend>Submit question:</legend>
<p><strong>Notes:</strong>
You will be redirected to your mail client and will be able to add attachments (e.g., screenshots, etc.) before sending the email to the Helpdesk.
<br>
If your email client is not compatible, you can send an email with the above information to [email protected]
<br>
</p>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</fieldset>
</form>
</div>
</div><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="js/ie10-viewport-bug-workaround.js"></script>
<!-- Code highlighting -->
<script src="js/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script src="js/general.js" type="text/javascript"></script>
<script>
function hpcshow() {
document.getElementById('hpc').style.display="block";
}
function shownone() {
document.getElementById('hpc').style.display="none";
}
</script>
</body>
</html>