create.blade.php 3.36 KB
Newer Older
chadaporn netwong's avatar
chadaporn netwong committed
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
@extends('base')

@section('content')
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" ></script>
 <style>
 h2 {
   text-align:
   color: blue;
}
</style>
<body style="background-color:#b4ecf4;">
</body>
<form action="{{ route('ask.store') }}" method="post" >
  {{ csrf_field() }}
  @if(Session::get('status'))
   <div class="alert alert-info">
     {{Session::get('status')}}
   </div>
  @endif
<fieldset>
<legend>ข้อมูลส่วนบุคคล</legend>
Name :
<input type="text" name="name" size="20" maxlength="30" /> <br />
Sex :
<input type="radio" name="sex" value="M" /> 🙋‍♂️ Male
<input type="radio" name="sex" value="F" /> 🙋‍♀️ Female <br />
Age :
<select name="age">
<option value="1" >1-10</option>
<option value="2">11-20</option>
<option value="3">21-30</option>
<option value="4">31-40</option>
<option value="5">>40</option>
</select>
</fieldset>
<fieldset>
<legend>ข้อมูลเกี่ยวกับความพึงพอใจในการใช้บริการเว็บไซต์มากน้อยเพียงใด</legend>
<p>ความสวยงาม ความทันสมัย น่าสนใจของหน้าโฮมเพจ</p>
<input type="radio" name="p1"  value="1">น้อยที่สุด/ควรปรับปรุง<br>
<input type="radio" name="p1"  value="2">ปานกลาง<br>
<input type="radio" name="p1"  value="3" >มาก<br>
<input type="radio" name="p1"  value="4">มากที่สุด<br>
<p>การจัดรูปแบบในเว็บไซต์ง่ายต่อการอ่านและการใช้งาน</p>
<input type="radio" name="p2"  value="1">น้อยที่สุด/ควรปรับปรุง<br>
<input type="radio" name="p2"  value="2">ปานกลาง<br>
<input type="radio" name="p2"  value="3" >มาก<br>
<input type="radio" name="p2"  value="4">มากที่สุด<br>
<p>ความสะดวกในการเชื่อมโยงข้อมูลภายในเว็บไซต์</p>
<input type="radio" name="p3"  value="1">น้อยที่สุด/ควรปรับปรุง<br>
<input type="radio" name="p3"  value="2">ปานกลาง<br>
<input type="radio" name="p3"  value="3" >มาก<br>
<input type="radio" name="p3"  value="4">มากที่สุด<br>
<p>ความเหมาะสมของข้อมูลภายในเว็บไซต์์</p>
<input type="radio" name="p4"  value="1">น้อยที่สุด/ควรปรับปรุง<br>
<input type="radio" name="p4"  value="2">ปานกลาง<br>
<input type="radio" name="p4"  value="3" >มาก<br>
<input type="radio" name="p4"  value="4">มากที่สุด<br>
ข้อเสนอแนะ อื่นๆ ที่ต้องการให้มีการปรับปรุงและพัฒนา : <br />
<textarea wrap="virtual" name="commet" rows="6" cols="50">

</textarea>
</fieldset>
<!-- <input type="file" name="filename" size="30" /> -->
<p align="center">
<button class="btn btn-info" type="submit" >Submit</button>
<button class="btn btn-danger" type="reset">Reset</button>
</p>
</form>

<a href="/ask" class="btn btn-warning" type="button" >ไปดูหน้ากราฟกัน !!</a>
@stop