first commit
This commit is contained in:
@ -0,0 +1,72 @@
|
||||
<!-- CONTACT FORM START-->
|
||||
<section class="section " style="background-color: #f8fcffe8;" id="contact">
|
||||
<div class="container">
|
||||
<div class="row justify-content-center text-center">
|
||||
<div class="col-lg-12">
|
||||
<i class="ti-headphone-alt title-icon text-muted"></i>
|
||||
<h3 class="title">Get In <span class="fw-bold">Touch</span></h3>
|
||||
<!-- <p class="text-muted mt-3 title-subtitle mx-auto">It is a long established fact that a reader will
|
||||
be of a page when established fact looking at its layout.</p> -->
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-4">
|
||||
<div class="mt-4 pt-4">
|
||||
<p class="text-muted mt-4"> <span class="fw-bold ">Phone No.:</span><br> <span
|
||||
class="d-block mt-2">04172 – 224627 / 224626</span></p>
|
||||
<p class="text-muted mt-4"><span class="fw-bold ">Address:</span><br> <span
|
||||
class="d-block mt-2">Christian Medical College, IDA Scudder Rd, Vellore, Tamil Nadu 632004</span></p>
|
||||
<p class="text-muted mt-4"><span class="fw-bold ">Email Address:</span><br> <span
|
||||
class="d-block mt-2">traumasurg.academic@cmcvellore.ac.in</span></p>
|
||||
<p class="text-muted mt-4"><span class="fw-bold ">Time:</span><br> <span
|
||||
class="d-block mt-2">9:00AM To 6:00PM</span></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-8">
|
||||
<div class="custom-form mt-4 pt-4">
|
||||
<form method="post" name="myForm" onsubmit="return validateForm()">
|
||||
<p id="error-msg"></p>
|
||||
<div id="simple-msg"></div>
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<div class="form-group mt-2">
|
||||
<input name="name" id="name" type="text" class="form-control"
|
||||
placeholder="Your name*">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<div class="form-group mt-2">
|
||||
<input name="email" id="email" type="email" class="form-control"
|
||||
placeholder="Your email*">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="form-group mt-2">
|
||||
<input type="text" class="form-control" id="subject" placeholder="Your Subject.." />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="form-group mt-2">
|
||||
<textarea name="comments" id="comments" rows="4" class="form-control"
|
||||
placeholder="Your message..."></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-right">
|
||||
<input type="submit" id="submit" name="send" class="submitBnt btn btn-primary"
|
||||
value="Send Message">
|
||||
<div id="simple-msg"></div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- CONTACT FORM END-->
|
||||
@ -0,0 +1,25 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { ContactComponent } from './contact.component';
|
||||
|
||||
describe('ContactComponent', () => {
|
||||
let component: ContactComponent;
|
||||
let fixture: ComponentFixture<ContactComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ ContactComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(ContactComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@ -0,0 +1,19 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-contact',
|
||||
templateUrl: './contact.component.html',
|
||||
styleUrls: ['./contact.component.scss']
|
||||
})
|
||||
|
||||
/**
|
||||
* Contact component
|
||||
*/
|
||||
export class ContactComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user