2014-11-30 01:02:11 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>OpenSondage Installation</title>
|
|
|
|
<link rel="stylesheet" href="../css/bootstrap.min.css">
|
|
|
|
<link rel="stylesheet" href="../css/style.css">
|
|
|
|
<link rel="stylesheet" href="../css/frama.css">
|
|
|
|
<link rel="stylesheet" href="install.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container ombre">
|
|
|
|
<header role="banner">
|
|
|
|
<h1>
|
2014-12-03 14:30:25 +01:00
|
|
|
<img src="../images/logo-framadate.png" width="360" height="50" alt="Framadate" />
|
2014-11-30 01:02:11 +01:00
|
|
|
</h1>
|
|
|
|
<h2>Make your polls</h2>
|
|
|
|
<hr class="trait" role="presentation">
|
|
|
|
</header>
|
|
|
|
<main role="main">
|
2014-12-03 14:30:25 +01:00
|
|
|
<h3>Framadate Installation</h3>
|
2014-11-30 01:02:11 +01:00
|
|
|
<form action="" method="post" role="form">
|
|
|
|
<fieldset>
|
|
|
|
<legend>General</legend>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="title">Title</label>
|
|
|
|
<input type="text" class="form-control" id="title" name="title" placeholder="Application name" required>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="email">Administrator email</label>
|
|
|
|
<input type="email" class="form-control" id="email" name="email" placeholder="Email of the administrator" required>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="no-reply-email">No-reply email</label>
|
|
|
|
<input type="email" class="form-control" id="no-reply-email" name="no-reply-email" placeholder="Email for automatic responses" required>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
|
|
<legend>Database</legend>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="db-type">Type</label>
|
|
|
|
<select name="db-type" id="db-type" required>
|
|
|
|
<option value="pdo">PDO - MySQL (recommanded)</option>
|
|
|
|
<option value="mysql">MySQL</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="db-host">Host</label>
|
|
|
|
<input type="text" class="form-control" id="db-host" name="db-host" value="localhost" required>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="db-name">Database name</label>
|
|
|
|
<input type="text" class="form-control" id="db-name" name="db-name" value="opensondage" required>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="db-user">Username</label>
|
|
|
|
<input type="text" class="form-control" id="db-user" name="db-user" value="root" required>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="db-pass">Password</label>
|
|
|
|
<input type="password" class="form-control" id="db-pass" name="db-pass" value="">
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<input type="submit" class="btn btn-success" name="install" value="Install">
|
|
|
|
</form>
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|