Formatting Code
This commit is contained in:
parent
a7b83d5d42
commit
21fca7d34a
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "my-website",
|
||||
"name": "my-website-3",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
|
|
@ -11,15 +11,24 @@
|
|||
|
||||
<form onsubmit="alert(1)">
|
||||
@csrf
|
||||
|
||||
<label for="name">Name:*<label>
|
||||
<input type="text" id="name" name="name" /><br>
|
||||
|
||||
<label for="email">Email:*<label>
|
||||
<input type="email" id="email" name="email" placeholder="person@gmail.com" /><br>
|
||||
|
||||
<label for="subject">Subject:<label>
|
||||
<input type="text" id="subject" name="subject" /><br>
|
||||
|
||||
<label for="message">Message:*</label>
|
||||
<textarea id="message" name="message"></textarea><br>
|
||||
|
||||
<button type="submit">Send Message</button>
|
||||
</form>
|
||||
|
||||
<p class="text-xl bg-zinc-800 text-zinc-200">
|
||||
Some kind of test text just to showcase tailwindcss
|
||||
</p>
|
||||
|
||||
@endsection
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
@ -20,6 +21,7 @@
|
|||
<!-- Styles -->
|
||||
@vite('resources/css/app.css')
|
||||
</head>
|
||||
|
||||
<body class="antialiased">
|
||||
|
||||
<header class="md:flex bg-white w-96 md:w-48 shadow-md rounded">
|
||||
|
@ -38,7 +40,6 @@
|
|||
</nav>
|
||||
</header>
|
||||
|
||||
|
||||
<section class="bg-white w-96 shadow rounded">
|
||||
<h2 class="text-l bg-white bg-left w-96 font-sans font-medium">
|
||||
@section('heading')
|
||||
|
@ -62,4 +63,5 @@
|
|||
</footer>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue