google_forms/application/views/templates/forms_ui.php

79 lines
2.5 KiB
PHP
Raw Normal View History

2024-07-10 12:37:36 +00:00
<!DOCTYPE html>
<html lang="en">
2024-07-11 12:05:44 +00:00
2024-07-10 12:37:36 +00:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Form Clone</title>
2024-07-11 12:05:44 +00:00
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/bootstrap.min.css">
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/styles.css">
2024-07-10 12:37:36 +00:00
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
2024-07-11 12:05:44 +00:00
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/jquery-ui.css">
<style>
.navbar-custom {
background-color: rgb(103, 58, 183);
color: white;
border-radius: 0;
}
.navbar-custom .navbar-brand {
color: white;
2024-07-12 11:50:41 +00:00
font-size: 18px;
2024-07-11 12:05:44 +00:00
}
2024-07-12 11:50:41 +00:00
.navbar-custom .navbar-nav>li>a {
2024-07-11 12:05:44 +00:00
color: white;
2024-07-12 11:50:41 +00:00
font-size: 16px;
2024-07-11 12:05:44 +00:00
}
#submit-btn {
margin-top: 20px;
2024-07-22 12:39:47 +00:00
background-color: rgb(103, 58, 183); border-color: rgb(103, 58, 183); color: white;"
2024-07-12 11:50:41 +00:00
float: left;
clear: both;
2024-07-11 12:05:44 +00:00
}
2024-07-19 10:46:18 +00:00
.container{
margin-top: 10px;
}
2024-07-11 12:05:44 +00:00
</style>
2024-07-10 12:37:36 +00:00
</head>
2024-07-11 12:05:44 +00:00
2024-07-10 12:37:36 +00:00
<body>
2024-07-15 12:45:25 +00:00
<script>
var base_url = '<?php echo base_url(); ?>';
</script>
2024-07-11 12:05:44 +00:00
<nav class="navbar navbar-inverse navbar-custom">
<div class="container">
<div class="navbar-header">
2024-07-22 12:39:47 +00:00
<a class="navbar-brand" href="<?php echo base_url(); ?>">Google Forms</a>
2024-07-11 12:05:44 +00:00
</div>
<div id="navbar">
<ul class="nav navbar-nav navbar-right">
<a class="navbar-brand" href="<?php echo base_url(); ?>users/logout">Logout</a>
</ul>
</div>
</div>
</nav>
2024-07-10 12:37:36 +00:00
<div class="container">
<div class="form-header">
<button id="preview-btn" class="btn btn-info"><i class="fas fa-eye"></i></button>
<h2>Untitled Form</h2>
<button id="add-section-btn" class="btn btn-primary">+</button>
</div>
<div id="form-container"></div>
2024-07-11 12:05:44 +00:00
2024-07-22 12:39:47 +00:00
<button id="submit-btn" class="btn btn-success" style="margin-left: 240px; margin-top: 20px ">Submit</button>
2024-07-12 11:50:41 +00:00
2024-07-10 12:37:36 +00:00
</div>
<script src="<?php echo base_url('assets/js/jquery.min.js'); ?>"></script>
<script src="<?php echo base_url('assets/js/bootstrap.min.js'); ?>"></script>
<script src="<?php echo base_url('assets/js/jquery-ui.js'); ?>"></script>
<script src="<?php echo base_url('assets/js/scripts.js'); ?>"></script>
2024-07-12 11:50:41 +00:00
2024-07-10 12:37:36 +00:00
</body>
2024-07-11 12:05:44 +00:00
2024-07-10 12:37:36 +00:00
</html>